查找输入的最小值和最大值

时间:2013-09-18 00:42:49

标签: input python-3.x max min

poi = float(input("Price of item?"))
if poi <= poi:
    lowest_price = poi
if poi >= poi:
    largest_price = poi

尝试查找用户输入的最低和最高价格 帮助

1 个答案:

答案 0 :(得分:1)

Python有maxmin内置函数,可以找到列表/数字集的最大值。

http://docs.python.org/2/library/functions.html#max

http://docs.python.org/2/library/functions.html#min