ValueError:没有足够的值来解压缩Split函数

时间:2018-02-15 08:10:55

标签: python split python-3.6

我试图编码这个

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来解决这个问题

0 个答案:

没有答案