Commit 96bf607f by BellCodeEditor

save project

parent b65143e6
Showing with 2 additions and 2 deletions
......@@ -2,11 +2,11 @@
dict= {'可口可乐':3,'旺仔牛奶':4,'农夫山泉':1,'辣条':3,'巴西烤肉':2,'果冻':4,'乐事':5,'奥利奥':10,'巧克力':6}
user_buy = input("你想要买甚么东东里?")
if user_buy in dict:
print("你好" + user_buy + "需要" + str(dict[user_buy] + "块钱"))
print("你好" + user_buy + "需要" + str(dict[user_buy]) + "块钱")
no_or_yes = input("请问你要买" + user_buy + "吗")
if no_or_yes == "是的":
print("购买成功,欢迎您下次光临")
print("您的余额剩下" + str(100 - dict[user_buy]))
print("您的余额剩下" + str((100 - dict[user_buy])))
else:
print("你可以看看别的商品哦!")
else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment