Commit 3c1c4e44 by BellCodeEditor

save project

parent 69e022a7
Showing with 5 additions and 4 deletions
......@@ -3,6 +3,6 @@ import csv
subject = ["姓名", "语文", "数学", "英语"]
score1 = ["小贝", 98, 99, 92]
score2 = ["聪聪", 95, 91, 95]
with open("a.csv","w","utf-8") as a:
writer=csv.writer(a)
writer.writerow(subject)
\ No newline at end of file
with open("s.csv","w",encoding="utf-8") as f:
writer=csv.writer(f)
writer.writerow(subject+score1+score2)
\ No newline at end of file
姓名,语文,数学,英语,小贝,98,99,92,聪聪,95,91,95
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