hnc-eduard/HNS/Excercises/13082023 ДЗ по фигурам JSON/main.py

11 lines
151 B
Python
Raw Normal View History

2023-08-18 19:27:51 +02:00
import json
def json_to_python():
with open("shapes.json") as shapes:
data = json.load(shapes)
return data
print(json_to_python())