Commit eb5e0fe6 by BellCodeEditor

save project

parent 5c17eeb1
Showing with 10 additions and 4 deletions
x,x,x,x,x,x,x,x,x,x,x,x,x,x,x
a,a,a,a,a,a,a,a,a,a,a,a,a,a,a
c,c,c,c,c,c,c,c,c,c,c,c,c,c,c
\ No newline at end of file
import csv import csv
data = [["姓名", "语文", "数学", "英语"], with open("iii.csv","r") as csvfile:
["小贝", 98, 99, 92], reader = csv.reader(csvfile)
["聪聪", 95, 91, 95]] print(reader)
\ No newline at end of file reader = list(reader)
#print(reader)
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