Commit b14b038f by BellCodeEditor

save project

parent 3faf4b37
Showing with 11 additions and 0 deletions
import csv
with open('report.csv','r',encoding='utf-8') as f:
a=csv.reader(f)
print(a)
b=list(a)
print(b)
for i in range(0,8):
print(b[i][3])
for a in range(0,10):
print(b[7][a])
\ 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