我正在对python进行受控评估。其中一项任务是根据特定标准创建自动售货机。我是一个非常糟糕的蟒蛇,我可能是一个白痴,做错了。
我希望用户只输入10,20,50,1.00个硬币。如果用户输入除这些硬币以外的任何东西,我希望它打印“机器不接受这些硬币”。
这是我到目前为止所做的:
inp = input("Enter Coins, Note: Machine only accepts 10, 20, 50 and 100 coins: ")
value = [10,20,50,100]
if inp != value:
print("Machine doesn't accept these coins")
else:
print("What would you like to buy?")