# 从 csv 文件中读取数据
import csv
f = open('data.csv', 'r')
data = list(csv.reader(f))
# print(data)
f.close()
# 找出价格大于等于 2 且价格最低的文具
min = 100
for i in data:
name = i[0]
price = float(i[1])
print...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《python 6.23》 | 349字 | 19.0分钟 | 98% | 58 CPM | 16 次 | 6 | 不及格,加强练习! |
The wrong word this time: ,p,r,i,c,e | |||||||
Inspirational quotes: 不但要团结和自己意见相同的人,而且要善于团结那些和自己意见不同的人,还要善于团结那些反对自己并且已被实践证明是犯了错误的人。 ——毛泽东 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |