Commit 84600e3b by BellCodeEditor

save project

parent bfa23571
Showing with 7 additions and 7 deletions
import csv
data = [["姓名", "语文", "数学", "英语"]
["小贝", 98, 99, 92]
["聪聪", 95, 91, 95]]
with open("scores.csv","w",encoding="uft-8",newline='') as cavfile:
writer=csv.writer(cavfile)
writer.writerow(data)
with open("scores.csv","r",encoding="uft-8") as f:
f_cvs = csv.reader(f)
f_cvs = list(f_cvs)
pipi = f_cvs[7]
print(pipi)
for row in f_cvs:
print(row[3])
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