我目前有 -
showFile = open("products.txt", 'r')
lines = showFile.readline()
while lines:
print(lines)
lines = showFile.readline()
showFile.close()
showFile = open("products.txt", 'r')
numbers = []
for line in showFile:
tokens = line.split(',')
numbers.append(min(t for t in tokens[0]))
minValue = min(numbers)
print(minValue)
Products.txt -
'Snicker's, 33, 84
'Mars', 18.5, 72
'Bounty', 22, 96
所以其中33是价格,84是数量。18.5是价格,72是数量等等。
我试图让它打印出类似的东西——士力架是每单位 0.39 美元。Mars 是每单位 0.29 美元。赏金为每单位 0.23 美元。赏金是最便宜的
感谢帮助:D