读取配置文件ini格式

one.ini格式文件内容如下:

[test_section]
test_param = 123456

 

 

python脚本


import configparser

config = configparser.ConfigParser()
config.read_file(open('wu.ini'))


test_value = config.get("test_section","test_param")
print(test_value)

posted @ 2020-05-01 18:35  景月  阅读(184)  评论(0编辑  收藏  举报