mirror of
https://github.com/EgorMIt/ITMO.git
synced 2026-09-14 11:05:39 +05:00
12 lines
242 B
Python
12 lines
242 B
Python
import yaml
|
|
import json
|
|
import time
|
|
|
|
start_time = time.perf_counter()
|
|
|
|
with open("timetable.json", 'r', encoding='utf-8') as input:
|
|
json_object = json.load(input)
|
|
print(yaml.dump(json_object))
|
|
|
|
print(time.perf_counter() - start_time)
|