list = []
while True:
n = int(input("Enter one whole number and press enter to continue or type -50 to stop the loop): "))
if n == -50:
break
list.append(n)
print('-'*30)
print(list)
print("max number = {}".format(max(list)))
print("min number = {}".format(min(list)))
我只需要知道如何将max#和min#一起添加到一个数字。感谢
答案 0 :(得分:1)
你想要的只是:
max(list) + min(list)
此外,您不应该调用自己的变量list
,因为它会影响内置变量。