标签:
配置文件的格式:
import ConfigParser
conf = ConfigParser.ConfigParser()
filepath = "c:\test.conf"
conf.read(filepath)
node ="user"
key = "user_id"
value = "45"
conf.set(node,key,value)
fh = open(filepath ,‘w‘)
conf.write(fh)#把要修改的节点的内容写到文件中
fh.close()
标签:
原文地址:http://www.cnblogs.com/wuxie1989/p/5610415.html