Commit 80c2e667 by BellCodeEditor

save project

parent 34a77211
Showing with 15 additions and 9 deletions
def func(n): list=['1','2','3','2','4','5','2']
if n<=2: list.remove('2')
return 1 print(list)
elif n>2: \ No newline at end of file
value = func(n-1)+func(n-2)
return value
result = func(21)
print(result)
bros=["关羽","刘备""张飞"]
print(bros)
str1='python'
str2="python"
print(str1)
print(str2)
a=['华雄']
b=['袁术''']
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