import configparser 通过 .py写.ini文件
Posted hb15988111121
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了import configparser 通过 .py写.ini文件相关的知识,希望对你有一定的参考价值。
import configparser config = configparser.ConfigParser() # config = {} config["DEFAULT"] = {‘ServerAliveInterval‘: ‘45‘, ‘Compression‘: ‘yes‘, ‘CompressionLevel‘: ‘9‘} config[‘bitbucket.org‘] = {} config[‘bitbucket.org‘][‘User‘] = ‘hg‘ config[‘topsecret.server.com‘] = {} topsecret = config[‘topsecret.server.com‘] topsecret[‘Host Port‘] = ‘50022‘ # mutates the parser topsecret[‘ForwardX11‘] = ‘no‘ # same here config[‘DEFAULT‘][‘ForwardX11‘] = ‘yes‘ with open(‘example.ini‘, ‘w‘) as f: config.write(f)
以上是关于import configparser 通过 .py写.ini文件的主要内容,如果未能解决你的问题,请参考以下文章