Commit 5f8439cc by BellCodeEditor

auto save

parent f46f8b06
Showing with 26 additions and 1 deletions
# 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~
mony = float(input("你有多少RMB"))
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]) + "块钱")
howmany = int(input('你要买几样这个东西?'))
no_or_yes = input("请问你要买" + user_buy + str(howmany) + "样吗")
if no_or_yes == "是":
print("购买成功,欢迎您下次光临")
print("一共要" + str(dict[user_buy]*howmany))
if mony - float(dict[user_buy]*howmany) < 0:
print("你没钱了")
print("您的余额剩下" + str((mony - dict[user_buy]*howmany)))
else:
print("你可以看看别的商品哦!")
else:
print("对不起" + user_buy + "暂时缺货")
\ No newline at end of file
......@@ -11,6 +11,11 @@ for i in message:
key_message += text
noice = "portajdfjhajhfuhfwuy560456075=-0/;l/;/l"
list_message = list(key_message)
list_message.insert(random.randint(0,len(key_message)),noice)
# list_message.insert(random.randint(0,len(key_message)),noice)
result_message = ''.join(list_message)
print(result_message)
print("解码中")
tex = '诺1我伊a的,用4周都@末知_一=+起啦p去1x看牛6动用^portajdfjhajhfuhfwuy560456075=-0/;l/;/l漫r8展v也吧w=!cu'
tex = tex.replace("portajdfjhajhfuhfwuy560456075=-0/;l/;/l","")
print(tex[0::3])
\ 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