您可以使用configparser (ConfigParser for < Python 3) 模块来做到这一点。
文档中的示例(这使用 Python 2.* 语法,您必须使用configparser
):
读
import ConfigParser
config = ConfigParser.RawConfigParser()
config.read('example.cfg')
a_float = config.getfloat('Section1', 'a_float')
an_int = config.getint('Section1', 'an_int')
print a_float + an_int
if config.getboolean('Section1', 'a_bool'):
print config.get('Section1', 'foo')
写
import ConfigParser
config = ConfigParser.RawConfigParser()
config.add_section('Section1')
config.set('Section1', 'an_int', '15')
config.set('Section1', 'a_bool', 'true')
config.set('Section1', 'a_float', '3.1415')
config.set('Section1', 'baz', 'fun')
config.set('Section1', 'bar', 'Python')
config.set('Section1', 'foo', '%(bar)s is %(baz)s!')
with open('example.cfg', 'wb') as configfile:
config.write(configfile)