BlakyubeUiWbCiWcQiby7ib.py
import os
with open("file.json", "ab+") as ab:
ab.close()
f = open('file.json','r+')
f.readline()
if os.stat("file.json").st_size == 0:
f.write("{}")
f.close()
else:
pass
Exuberant Echidna