Skip to content

Instantly share code, notes, and snippets.

@iloveicedgreentea
Created June 14, 2021 16:52
Read json data - python
import json
# Read a file and get some value if it is false
with open("test.json", 'r') as file:
json_input = json.loads(file.read())
for i, val in enumerate(json_input["somelist"]):
if val is False:
print(f"{i}: False")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment