python读取ini配置文件
Posted 随性者也
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取ini配置文件相关的知识,希望对你有一定的参考价值。
python读取配置文件的方法:
1. 引入库
python2.x
import ConfigParser
python3.x
import configparser
区别:python2.x每个单词开头都是大写,python3.x都是小写
2. 打开文件
python2.x
cf = ConfigParser.ConfigParser() cf.read(‘./config.ini‘, encoding=‘gbk‘)
python3.x
cf = configparser.ConfigParser() cf.read(‘./config.ini‘, encoding=‘gbk‘)
3. 读取信息
input_path = cf.get(‘input‘, ‘path‘) trade_type = cf.getint(‘trade‘, ‘trade_type‘)
读取信息通过get系列函数:
参数1是节(section);
参数2是键;
返回的是值。
以上是关于python读取ini配置文件的主要内容,如果未能解决你的问题,请参考以下文章