configparser

A 1-post collection
9 年前

python 对ini配置文件的读写操作

Shell/Python   configparser  

ini 文件格式 ini 一般为文本文件,数据格式例 [hk] node_ip = 2.2.2.2 [cn] node_ip2 = 4.4.4.4 node_ip = 1.1.1.1 [us] node_ip = 3.3.3.3 ini 文件可以分为几个 Section,每个 Section 的名称用 [] 括起来,在一个 Section 中,可以有很多的 Key,每一个 Key 可以有一…