Commit 9cf853ab by BellCodeEditor

save project

parent fed590e6
Showing with 14 additions and 8 deletions
list = ["1","2","3","八戒","4","5"]
list.pop(3)
list.append("诺依")
print(list)
red = list[0:3]
blue = list[3:7]
print(red)
print(blue)
lovelive={"香蕉":199,"苹果":250,"芒果":225,"葡萄":180,"西瓜":114514}
mom=input("请输入西瓜今日价格:")
if mom in lovelive:
if mom > lovelive["西瓜"]:
print("这个是西瓜\n是个好东西\n黑人售卖\n店面还超大")
else:
print("先买个一车再说")
if int(mom) > lovelive["西瓜"]:
print("这个是西瓜\n是个好东西\n黑人售卖\n店面还超大")
else:
print("有这个东西吗???")
\ No newline at end of file
print("先买个一车再说")
\ No newline at end of file
# 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~
dict= {'可口可乐':3,'旺仔牛奶':4,'农夫山泉':1,'辣条':3,'巴西烤肉':2,'果冻':4,'乐事':5,'奥利奥':10,'巧克力':6}
r=input("亲,请问亲要买点什么呢?:)")
if r in dict:
if int(r) dict:
print("亲,您需要购买的商品是"+r+"吗?如果是的,请使用现金支付(仅支持比特币支付)"+str(dict[r])+"比特币:)")
else:
print("亲爱的用户,亲没有找到您需要的商品呢~\n可能是以下其中的一个原因:\n1.网络不好\n2.没有这个商品\n3.已售完")
......
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