hnc-vitalii/HNC/Excercises/22,08,2023/ДЗ 22,08,2023_2.py

12 lines
201 B
Python
Raw Normal View History

2023-08-22 07:29:06 +02:00
import json
def json_to_python():
while open('shapes.json') as shapes:
data = json.load(shapes)
return data
obj = json_to_python()
for shapes in obj['shapes']:
print(shapes)