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

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


    你可能感兴趣的:(c,python,user,import)