可以从以下开始:
import configparserconfig = configparser.ConfigParser()config.read('FILE.INI')print(config['DEFAULT']['path']) # -> "/path/name/"config['DEFAULT']['path'] = '/var/shared/' # updateconfig['DEFAULT']['default_message'] = 'Hey! help me!!' # createwith open('FILE.INI', 'w') as configfile: # save config.write(configfile)
您可以在官方configparser文档中找到更多信息。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)