Commit 7fde8351 by BellCodeEditor

auto save

parent 87f5112d
Showing with 12 additions and 2 deletions
......@@ -2,4 +2,12 @@ import csv
subject = ["姓名", "语文", "数学", "英语"]
score1 = ["小贝", 98, 99, 92]
score2 = ["聪聪", 95, 91, 95]
\ No newline at end of file
score2 = ["聪聪", 95, 91, 95]
# 创建csv文件并写入
# with open()方法参1创建csv文件参2写入模式w参3encoding参数设为utf-8
with open("scores.csv", "w", encoding="utf-8") as csvfile:
writer = csv.writer(csvfile) # 用csv.writer()方法创建写入对象参数为csvfile并赋值给变量writer
writer.writerow(subject) # 用writer.writerow()方法向csv文件写入列表subject
writer.writerow(score1) # 用writer.writerow()方法向csv文件写入列表score1
writer.writerow(score2) # 用writer.writerow()方法向csv文件写入列表score2
姓名,语文,数学,英语
小贝,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