python 使用字典讀取CSV檔案

西北逍遥發表於2024-07-27

python 讀取CSV檔案

import csv

# 開啟CSV檔案
with open('example.csv', 'r', newline='') as file:
    reader = csv.DictReader(file)
    
    # 遍歷CSV檔案的每一行(作為字典)
    for row in reader:
        print(row['Name'], row['Age'], row['City'])

########################

相關文章