python 创建一个ini文件
时间: 2024-01-07 12:02:26 浏览: 105
python读取配置文件方式(ini、yaml、xml)
可以使用 Python 中的 ConfigParser 模块来创建和读取 INI 文件。以下是一个示例代码:
```python
import configparser
# 创建 ConfigParser 对象
config = configparser.ConfigParser()
# 添加一些配置
config['DEFAULT'] = {'ServerAliveInterval': '45',
'Compression': 'yes',
'CompressionLevel': '9'}
config['bitbucket.org'] = {}
config['bitbucket.org']['User'] = 'hg'
# 写入到文件
with open('example.ini', 'w') as configfile:
config.write(configfile)
```
以上代码将创建一个名为 example.ini 的文件,并添加一些配置。你可以根据需要自定义配置。最后,使用 write() 方法将配置写入文件。
阅读全文