我们在操作 ini 配置文件的时候 可以使用 Python 的 configparser 库
具体使用方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
from configparser import ConfigParser
# 初始化
cf = ConfigParser()
# 加载文件
cf.read( 'ini.ini' )
# 读取 user 节点下所有数据
all = cf.items( 'user' )
print ( all )
# 读取 user 节点下 name 的值
name = cf.get( 'user' , 'name' )
print (name)
# 增加节点
cf.add_section( 'teacher' )
cf.add_section( 'test' )
# 删除 test 节点
cf.remove_section( 'test' )
# 给指定节点添加信息
cf. set ( 'user' , 'sex' , '男' )
cf. set ( 'teacher' , '语文老师' , '张老师' )
# 修改 user 节点下的 age
cf. set ( 'user' , 'age' , '90' )
# 删除 user 节点下的 sex
cf.remove_option( 'user' , 'sex' )
# 保存到文件
cf.write( open ( 'a.ini' , 'w' , encoding = 'utf-8' ))
|
原 ini 文件
修改后保存的 a.ini 文件
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/shiyixirui/p/12931826.html