Untitled
Anonymous
python
06/15/2024 6:05 AM
284 B
16
Indexable
import json
if __name__ == '__main__':
with open('data/simple_data.json', 'r', encoding='utf-8') as file:
data = json.load(file) # pdczyt danych z pliku simple_data.json
print(data)
Editor is loading...
Leave a Comment