如何在Python中读取配置文件?
时间: 2024-04-20 19:21:02 浏览: 117
python读取配置文件
在Python中,可以使用不同的方法来读取配置文件,包括ini配置文件和Properties配置文件。
1. 读取ini配置文件[^1]:
```python
import configparser
# 创建ConfigParser对象
config = configparser.ConfigParser()
# 读取配置文件
config.read('config.ini')
# 获取配置项的值
value = config.get('section', 'option')
print(value)
```
2. 读取Properties配置文件[^2]:
```python
import configparser
# 创建ConfigParser对象
config = configparser.ConfigParser()
# 读取配置文件
config.read('config.properties')
# 获取配置项的值
value = config.get('section', 'option')
print(value)
```
以上是两种常用的方法来读取配置文件,根据配置文件的格式选择相应的方法进行读取。
阅读全文