python读取ini配置文件
2021-05-18 00:28
标签:3.x parser div trade section 配置文件 入库 参数 pre python读取配置文件的方法: 1. 引入库 python2.x python3.x 区别:python2.x每个单词开头都是大写,python3.x都是小写 2. 打开文件 python2.x python3.x 3. 读取信息 读取信息通过get系列函数: 参数1是节(section); 参数2是键; 返回的是值。 python读取ini配置文件 标签:3.x parser div trade section 配置文件 入库 参数 pre 原文地址:https://www.cnblogs.com/zhugaopeng/p/9745746.htmlimport ConfigParser
import configparser
cf = ConfigParser.ConfigParser()
cf.read(‘./config.ini‘, encoding=‘gbk‘)
cf = configparser.ConfigParser()
cf.read(‘./config.ini‘, encoding=‘gbk‘)
input_path = cf.get(‘input‘, ‘path‘)
trade_type = cf.getint(‘trade‘, ‘trade_type‘)
上一篇:汇编语言第一章