Commit b65143e6 by BellCodeEditor

save project

parent 035e12a9
Showing with 13 additions and 2 deletions
# 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~
dict= {'可口可乐':3,'旺仔牛奶':4,'农夫山泉':1,'辣条':3,'巴西烤肉':2,'果冻':4,'乐事':5,'奥利奥':10,'巧克力':6}
\ No newline at end of file
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] + "块钱"))
no_or_yes = input("请问你要买" + user_buy + "吗")
if no_or_yes == "是的":
print("购买成功,欢迎您下次光临")
print("您的余额剩下" + str(100 - dict[user_buy]))
else:
print("你可以看看别的商品哦!")
else:
print("对不起" + user_buy + "暂时缺货")
\ No newline at end of file
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