Commit c922b24d by BellCodeEditor

save project

parent cd249a62
Showing with 9 additions and 8 deletions
"""读取csv文件"""" #"""读取csv文件""""
import csv import csv
with open("report.csv","r"encoding="utf-8",newline="") with open("report.csv","r",encoding="utf-8",newline="") as report:
report_csv=csv.reader(report)
report_csv=list(report_csv)
pipi = report_csv[7]
print(pipi)
for row in report:
print(row[3])
\ 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