在python工程新建ini文件
时间: 2024-05-08 19:16:29 浏览: 78
要在Python工程中新建ini文件,可以使用configparser模块。以下是一个例子:
```python
import configparser
config = configparser.ConfigParser()
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['Port'] = '50022'
topsecret['ForwardX11'] = 'no'
with open('example.ini', 'w') as configfile:
config.write(configfile)
```
这段代码会创建一个名为example.ini的文件,并向其中写入一些配置信息。可以根据具体需要修改这些配置信息。
阅读全文