如何将我的max和min输出加在一起得到总和?

时间:2014-03-20 23:03:58

标签: python python-3.x

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#一起添加到一个数字。感谢

1 个答案:

答案 0 :(得分:1)

你想要的只是:

max(list) + min(list)

此外,您不应该调用自己的变量list,因为它会影响内置变量。