假设我有一个名为 settings.py 的文件,其内容如下:
{
"translate_tabs_to_spaces": True,
"word_wrap": "true",
"font_face": "Monaco",
"font_size": 14.0,
"highlight_line": True,
"ignored_packages":
[
""
],
"what": '''
This is python file, not json
'''
}
如何将它放入我的主应用程序文件 app.py 中名为 settings 的字典中?
谢谢。