Commit a9bb82b6 by BellCodeEditor

auto save

parent ae33661e
Showing with 22 additions and 0 deletions
...@@ -11,4 +11,5 @@ ...@@ -11,4 +11,5 @@
# 请注释掉上面的代码,并在下一行创建一个名为dict_hero的字典 # 请注释掉上面的代码,并在下一行创建一个名为dict_hero的字典
dict_hero={"王泽杨":(-10)*10*10*10,"孙宇轩":10*10,"彭子希":250,"潘宓禾":10000000*10*10*100} dict_hero={"王泽杨":(-10)*10*10*10,"孙宇轩":10*10,"彭子希":250,"潘宓禾":10000000*10*10*100}
dict_hero["彭子希"]=100+1 dict_hero["彭子希"]=100+1
dict_hero["猴十"]=75
print(dict_hero) print(dict_hero)
\ No newline at end of file
dict={'可口可乐':3,'旺仔牛奶':4,'农夫山泉':1,'辣条':3,'巴西烤肉':2,'果冻':4,'乐事':5,'奥利奥':10,'巧克力':6}
# k=input('你想买什么?')
# if k in dict:
# print('叮咚~您的'+k+'需要支付'+str(dict[k])+'元~')
# else:
# print('神奇百货暂时缺货,敬请期待~')
k=input('请输入水果名称:')
v=input('请输入水果价钱:')
if k in dict:
if float(v)<dict[k] and :
dict[k]=float(v)
print(k+'降价了,现价'+v+'元')
else:
print(k+'涨价了,我们不买')
else:
dict[] = float()
print(k+'的价钱'+v+'元已上传')
\ No newline at end of file
for i in range(1,101):
\ 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