python 中使用ConfigParser类修改配置文件

配置文件的格式:

  • [user]  
  • user_ip=127.0.0.1  
  • user_name=testuser
  • user_id=13

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()

转载于:https://www.cnblogs.com/wuxie1989/p/5610415.html

你可能感兴趣的:(python 中使用ConfigParser类修改配置文件)