Commit f00e2185 by BellCodeEditor

save project

parent c8c62ff0
Showing with 11 additions and 2 deletions
"""读取csv文件""""
\ No newline at end of file
"""读取csv文件"""
import csv
with open('report.csv','r',encoding='utf-8',newline='') as f:
r = csv.reader(f)
r = list(r)
for i in r:
a = i[3]
print(a)
b = r[7]
print(b)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment