From b65143e6d2bf13ca86a818c4075a0e0a1442b69e Mon Sep 17 00:00:00 2001 From: BellCodeEditor <bellcode_dev@bell.ai> Date: Mon, 1 Feb 2021 15:16:16 +0800 Subject: [PATCH] save project --- diy.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/diy.py b/diy.py index 00b2295..cd22efc 100644 --- a/diy.py +++ b/diy.py @@ -1,2 +1,13 @@ # 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~ -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 -- libgit2 0.25.0