import json
start = {
"money":"100",
"reputation":"0",
"rank":"Нет",
"devices":"Нет",
"Донат":"Нет"
}
dict.update([(id, start)])
with open('main.json', 'w', encoding="utf-8") as file:
json.dump(dict, file, ensure_ascii=False, indent=4)
{
"484175786": {
"money": "100",
"reputation": "0",
"rank": "None",
"devices": "Нет",
"Донат": "Нет"
}
}