Commit 5cf920ab by BellCodeEditor

auto save

parent 3faf4b37
Showing with 33 additions and 2 deletions
'''
1. 打印所有同学的英语成绩
2. 找到皮皮的所有成绩
3. 课后练习 查找地理成绩低于75分同学的名字
'''
import csv
a = 0
with open('report.csv','r',encoding='utf-8')as f:
f_csv = csv.reader(f)
listcsv = list(f_csv)
# print(listcsv[len(listcsv)-1])
for i in range(len(listcsv)):
# print(listcsv[i])
for j in range(len(listcsv[i])):
if listcsv[i][j] == '英语':
a = j
print(listcsv[i][a])
\ No newline at end of file
"""读取csv文件""""
\ No newline at end of file
import csv
with open('report.csv','r',encoding='utf-8')as f:
f_csv=csv.reader(f)
# print(f_csv)
csvlist = list(f_csv)
for j in csvlist[7]:
print(j)
print('*'*10)
for i in range(len(csvlist)):
print(csvlist[i][3])
\ 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