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'])
########################
QQ 3087438119