Как создать текстовый файл с помощью Python и сохранить словарь

import json

Dict = {'Dict': Dict}

with open('file.txt', 'w') as file:
     file.write(json.dumps(Dict))
Clever Caribou