Commit dcd17d84 by BellCodeEditor

auto save

parent 40a95971
Showing with 7 additions and 11 deletions
def tyui():
total = []
while True:
unit= input("请输入:")
if unit== 'q':
break
else:
total.append(unit)
print(total)
tyui()
\ No newline at end of file
def hello(name):
content="你好!"+name
return content
result=hello("小依")
print(result)
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