Commit 19dc7c0f by BellCodeEditor

save project

parent ca8f641d
Showing with 14 additions and 2 deletions
姓名,语文,数学,英语
小贝,98,99,92
聪聪,95,91,95
......@@ -2,4 +2,13 @@ import csv
subject = ["姓名", "语文", "数学", "英语"]
score1 = ["小贝", 98, 99, 92]
score2 = ["聪聪", 95, 91, 95]
\ No newline at end of file
score2 = ["聪聪", 95, 91, 95]
data = [95,92,94]
with open("cy.csv","w") as c:
writer = csv.writer(c)
writer.writerow(subject)
writer.writerow(score1)
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