Commit d2969679 by BellCodeEditor

save project

parent 3faf4b37
Showing with 13 additions and 2 deletions
"""读取csv文件""""
\ No newline at end of file
"""读取csv文件"""
import csv
b=1
with open("report.csv","r",encoding="utf-8") as f:
a=csv.reader(f)
a=list(a)
print(a[7])
for i in range(len(a)-1):
print(a[b][3])
b+=1
\ 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