我的 Python 程序遇到了问题。我正在尝试从文件中获取列表并打印最小的数字。例如。
showFile = open("company.txt", 'r')
for line in showFile:
tokens = line.split(',')
minValue = min(tokens[:2])
print("the lowest is", minValue)
它输出-
the lowest is 33
the lowest is 18.5
the lowest is 22
这是 company.txt -
'Huggies', 33, 84
'Snugglers', 18.5, 72
'Baby Love', 22, 96
我很nooby,所以任何帮助都会很棒。