标签:span sam top example igp val HERE parse parser
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文件
标签:span sam top example igp val HERE parse parser
原文地址:https://www.cnblogs.com/hb15988111121/p/12080002.html