标签: input python-3.x max min
poi = float(input("Price of item?")) if poi <= poi: lowest_price = poi if poi >= poi: largest_price = poi
尝试查找用户输入的最低和最高价格 帮助
答案 0 :(得分:1)
Python有max和min内置函数,可以找到列表/数字集的最大值。
max
min
http://docs.python.org/2/library/functions.html#max
http://docs.python.org/2/library/functions.html#min