溫馨提示×

python怎么讀取配置文件

小億
91
2023-11-23 07:06:47
欄目: 編程語言

在Python中,可以使用configparser模塊來讀取配置文件。以下是一個簡單的示例:

  1. 首先,創(chuàng)建一個名為config.ini的配置文件,內(nèi)容如下:
[Section1]
key1 = value1
key2 = value2

[Section2]
key3 = value3
key4 = value4
  1. 在Python代碼中,導入configparser模塊,并創(chuàng)建一個ConfigParser對象:
import configparser

config = configparser.ConfigParser()
  1. 使用read()方法讀取配置文件:
config.read('config.ini')
  1. 現(xiàn)在可以通過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ù)實際需求來進行配置文件的讀取和處理。

0