获取配置文件
# 获取配置文件 import configParser config = configparser.ConfigParser()
读取配置文件
# 判断配置文件位置 config.read(pathname, encoding="utf-8")
运行报错
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc5 in position 2: invalid continuation byte 解决:查看.ini 配置文件编码格式,修改为utf-8
读取配置文件并入参
input_name = "张三" eval(config.get("code","test3")) # 获取配置文件的结果为str 需要转换为dict
config.ini 配置文件内容
config.ini内容 [code] test1 = 123456 test2 = 123789
test3 = {"name":input_name,"password":"pa123456"}