python 读取CSV文件
python 读取CSV文件
import csv # 打开CSV文件 with open('example.csv', 'r', newline='') as file: reader = csv.reader(file) # 遍历CSV文件的每一行 for row in reader: print(row) # 打印整行,row是一个列表
########################
QQ 3087438119
python 读取CSV文件
import csv # 打开CSV文件 with open('example.csv', 'r', newline='') as file: reader = csv.reader(file) # 遍历CSV文件的每一行 for row in reader: print(row) # 打印整行,row是一个列表
########################