Commit 6ef66d32 by BellCodeEditor

auto save

parent a2c6887e
Showing with 9 additions and 1 deletions
def value_list():
list = []
while True:
value = input('请输入菜的价格(停止输入按q):')
if value == 'q':
break
list.append(value)
print(list)
value_list()
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