Commit 09da076b by BellCodeEditor

save project

parent db5aef5b
Showing with 7 additions and 0 deletions
def num1(num):
if num ==1:
return 1
temp = num1(num-1)
result = temp+num1
result=num1(10)
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