python修改配置文件不成功 10
#python3.4.0importconfigparserconfig=configparser.ConfigParser()withopen("新建文本文档.cfg"...
#python 3.4.0
import configparser
config = configparser.ConfigParser()
with open("新建文本文档.cfg","r+") as cfgfile:
config.read_file(cfgfile)
i = config.get("info","i")
print(i)
config.set("info","i","2")
i = config.get("info","i")
print (i)
cfgfile.close()
命令窗口的结果都对,但是配置文件中的值却没有变!这是怎么回事?
配置文件:
[info]
i = 0 展开
import configparser
config = configparser.ConfigParser()
with open("新建文本文档.cfg","r+") as cfgfile:
config.read_file(cfgfile)
i = config.get("info","i")
print(i)
config.set("info","i","2")
i = config.get("info","i")
print (i)
cfgfile.close()
命令窗口的结果都对,但是配置文件中的值却没有变!这是怎么回事?
配置文件:
[info]
i = 0 展开
2个回答
推荐于2017-07-31 · 知道合伙人互联网行家
关注
展开全部
你支持从”新建文本文档.cfg“读取了配置,并没有更新它,所以当然不会改变了。
参考下:
cfgfile = open("c:\\next.ini",'w')
# add the settings to the structure of the file, and lets write it out...
Config.add_section('Person')
Config.set('Person','HasEyes',True)
Config.set('Person','Age', 50)
Config.write(cfgfile)
cfgfile.close()
参考下:
cfgfile = open("c:\\next.ini",'w')
# add the settings to the structure of the file, and lets write it out...
Config.add_section('Person')
Config.set('Person','HasEyes',True)
Config.set('Person','Age', 50)
Config.write(cfgfile)
cfgfile.close()
2015-02-05 · 知道合伙人软件行家
老夭来了
知道合伙人软件行家
向TA提问 私信TA
知道合伙人软件行家
采纳数:1806
获赞数:8100
2008年从事软件开发,拥有多年的python,php,linux工作经验,发布过多个python,php的开源项目。
向TA提问 私信TA
关注
展开全部
你支持从”新建文本文档.cfg“读取了配置,并没有更新它,所以当然不会改变了。
参考下:
cfgfile = open("c:\\next.ini",'w')
# add the settings to the structure of the file, and lets write it out...
Config.add_section('Person')
Config.set('Person','HasEyes',True)
Config.set('Person','Age', 50)
Config.write(cfgfile)
cfgfile.close()
如果解决了您的问题请采纳!
如果未解决请继续追问!
追问
奥,我确实是没更新,可是,对于配置文件.cfg,我只要更新里面的i值即可,看着你给的参考程序,难道还要新建一个配置文件来覆盖掉原来的配置文件么?不太明白
追答
使得,就是用更新后的内容替换掉原来的内容,这样就更新了啊
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询