Python If Elif Else条件

时间:2019-03-03 13:57:35

标签: python

如果要购买的商品的价格超过$ 5000,则购买者必须进行招标(显示一条消息),如果该商品的价格在$ 500到$ 5000(含)之间,则购买者必须从三个不同的供应商处获取报价(显示一条消息) ,否则购买者可以继续订购该商品(显示一条消息)。

我所剩下的只是最后一点。我知道这很简单。

cost=int(input("Please Enter The Cost Of The Item You Wish To Purchase: "))
if cost>5000:
    print("Your Must Go To Tender")
elif cost<=500 or cost<=5000:
   print("Your Must Get 3 Different Quotes")
else:
    print("You May Order")

1 个答案:

答案 0 :(得分:3)

那是因为您的elif条件应该是:

elif cost >= 500 and cost <= 5000: