Commit d177c5b2 by BellCodeEditor

save project

parent 3f4a7031
Showing with 12 additions and 7 deletions
# 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~ cost={'a':5.2,'b':12.9,'c':2.4}
dict= {'可口可乐':3,'旺仔牛奶':4,'农夫山泉':1,'辣条':3,'巴西烤肉':2,'果冻':4,'乐事':5,'奥利奥':10,'巧克力':6} k=input('名字:')
j=input("你要买什么?") v=input('价钱:')
if j in dict: if k in cost:
print('或公司的'+k+'关于价格'+str(dict[k])+'感觉' if float(v)<cost[k]:
cost[k]=float(v)
print(k+"降价"+v)
else:
print(k+'涨价')
else: else:
print('无') cost[k]=float(v)
\ No newline at end of file print(k+v)
\ 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