Commit 94330ae4 by BellCodeEditor

save project

parent e04a7c91
Showing with 7 additions and 11 deletions
姓名,语文,数学,英语 姓名,语文,数学,英语
小贝,98,99,92 聪聪,95,91,95
聪聪,95,91,95 小贝,98,99,92
import csv import csv
subject = ["姓名", "语文", "数学", "英语"] subject = [["姓名", "语文", "数学", "英语"],["聪聪", 95, 91, 95],["小贝", 98, 99, 92]]
score1 = ["小贝", 98, 99, 92] with open("my_csv.csv","w",encoding="utf-8",newline="") as cf:
score2 = ["聪聪", 95, 91, 95]
with open("my_csv.csv","w",encoding="utf-8") as cf:
writer=csv.writer(cf) writer=csv.writer(cf)
writer.writerow(subject) writer.writerows(subject)
writer.writerow(score1) \ No newline at end of file
writer.writerow(score2)
\ 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