在Python中,可以使用configparser
模塊來讀取配置文件。以下是一個簡單的示例:
config.ini
的配置文件,內(nèi)容如下:[Section1]
key1 = value1
key2 = value2
[Section2]
key3 = value3
key4 = value4
configparser
模塊,并創(chuàng)建一個ConfigParser
對象:import configparser
config = configparser.ConfigParser()
read()
方法讀取配置文件:config.read('config.ini')
get()
方法來獲取配置文件中的值:value1 = config.get('Section1', 'key1')
value2 = config.get('Section1', 'key2')
value3 = config.get('Section2', 'key3')
value4 = config.get('Section2', 'key4')
print(value1) # 輸出:value1
print(value2) # 輸出:value2
print(value3) # 輸出:value3
print(value4) # 輸出:value4
以上就是使用configparser
模塊讀取配置文件的基本步驟??梢愿鶕?jù)實際需求來進行配置文件的讀取和處理。