【Python】.ini 配置文件的读取及使用

获取配置文件

# 获取配置文件
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"}

 

上一篇:mysql 8.0.11 中使用 grant ... identified by 时 error 1064 near 'identified by '密码''


下一篇:Three.js的基础知识(二)