Commit 84600e3b by BellCodeEditor

save project

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