在 python 中创建设置文件的最简单方法是什么
我只是在做一些东西来启动我的世界,我需要一种方法来将一些设置保存到文件中,但我不知道应该用什么来做到这一点。我已经用谷歌搜索了我的问题,我得到的是关于 pyYaml configparser 和 configobj 我相信的信息。看完之后我很困惑,因为我不喜欢脚本和 python。我想要的是关于使用这些模块或你们建议的模块的建议或教程。 我正在使用 python 3.2
I am just making something to start up minecraft with , and I need a way to save some settings to a file , but I have no idea what I should use to do it . I googled my question already and what I got was information about pyYaml configparser and configobj I belive.And after looking at it I got confused because im not to scripting and python. What I would like is a recommendation or a tutorial on using those modules or the modules that you guys suggest .
I am using python 3.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用 configparser,文档末尾有示例/教程: http://docs.python.org/library/configparser.html#examples
I would use
configparser
, and there are examples/tutorial at the end of the documentation: http://docs.python.org/library/configparser.html#examples