Python教程

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

本文主要是介绍【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"}

 

这篇关于【Python】.ini 配置文件的读取及使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!