Commit a556cf6e by BellCodeEditor

save project

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