Commit c3516a86 by BellCodeEditor

auto save

parent c43d05da
Showing with 26 additions and 0 deletions
dict_apple={'苹果':5,'海南香蕉':8,'西瓜':2.68,'榴莲':12,'椰子':10.5,'圣女果':27}
name=input('今天你见了什么水果?')
price=input('How much?')
if name in dict_apple:
if price<dice_apple:
dict_apple['name']=int(price)
print('买买买')
else:
print('明天在看看')
else:
print('我不认识这个水果')
\ No newline at end of file
while True:
dict_apple={'苹果':5,'海南香蕉':8,'西瓜':2,'榴莲':12,'椰子':10,'圣女果':27}
name=input('今天你见了什么水果?')
price=input('How much?')
if name in dict_apple:
if int(price)<dict_apple[name]:
dict_apple[name]=int(price)
print('买买买')
else:
print('明天在看看')
else:
dict_apple[name]=int(price)
print('已添加')
\ 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