python3 对ini文件的读取与写入

一、安装第三方库

pip install ConfigParser

二、ini文件简介

;这里是注释
[select1]    ;区域
serveraddress = http://xxx:30080/serverlist.json    ;变量
game = "xxx"                                        ;变量
robot_id = xxxx-b8a2-4604-abba-5a9f0fe051c0         ;变量

三、读取示例:

import configparser

config = configparser.ConfigParser() # 类实例化

config.read('config.ini',encoding="utf-8")

section = config.sections() #返回区域列表

for i in range(len(section)):
    select = section[i] #区域名称
    # 此处 .split(";")[0].strip() 是为了去除读取到的注释
    serveraddress = config[select]['serveraddress'].split(";")[0].strip()
    print(serveraddress)

四、写入示例:

config.set({区域名},{变量名},{值}))
config.set('select','endId','0')
config.write(open("datas.ini",'w'))    #写入文件

你可能感兴趣的:(Python,python3读取ini,ConfigParser)