python 使用字典读取CSV文件

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'])

 

 

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

posted @ 2024-07-27 23:19  西北逍遥  阅读(10)  评论(0编辑  收藏  举报