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

11 lines
151 B
Python
Executable File

import json
def json_to_python():
with open("shapes.json") as shapes:
data = json.load(shapes)
return data
print(json_to_python())