python configparser 读取配置文件
时间: 2023-12-25 20:29:56 浏览: 126
Python使用configparser库读取配置文件
以下是使用Python的configparser模块读取配置文件的示例代码:
```python
import configparser
# 创建一个ConfigParser对象
config = configparser.ConfigParser()
# 读取配置文件
config.read('myapp.conf', encoding='utf-8')
# 获取配置文件中的值
value = config.get('msg', 'hello')
print(value)
```
这段代码首先导入了configparser模块,然后创建了一个ConfigParser对象。接下来,使用`read()`方法读取配置文件,并指定了文件的编码为utf-8。最后,使用`get()`方法获取配置文件中'section'为'msg'的键值对中的'value'值,并打印出来。
阅读全文