我试图编码这个
highest_score = 0
result_f = open('results.txt')
for line in result_f:
(name, score) = line.split()
if float(score) > highest_score:
highest_score = float(score)
result_f.close()
print("the Highest score was: ")
print(highest_score)
results.txt
的内容:
Johnny 8.65
Juan 9.12
Joseph 8.45
Stacey 7.81
Aideen 8.05
Zack 7.21
Aaron 8.31
Iam实际上首先阅读Head to python Book 我得到了这个代码示例,但它正在为我工作 我不知道我的错误是什么,有人请使用Python3.6来解决这个问题