Commit 6dacf1fd by BellCodeEditor

auto save

parent 62081000
Showing with 11 additions and 3 deletions
'''
total = []
while True:
unit= input("请输入(按):")
......@@ -7,8 +7,16 @@ while True:
else:
total.append(unit)
print(total)
'''
def max(a,b):
if a > b:
return a
else:
return b
x = 26
y=4
z=max(x,y)
print(z)
......
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