Jump to content

recursion example in python for loops


cococidial

Recommended Posts

I don't understand how this code from the python for loops example gets the answer.

def tri_recursion(k):
  if(k>0):
    result = k+tri_recursion(k-1)
    print(result)
  else:
    result = 0
  return result

print("\n\nRecursion Example Results")
tri_recursion(6)

The answer: 1, 3, 6, 10, 15, 21.

I'm still very new at python. I thought  the way the code would work is:

result = 6 + (6-1) = 11

With the presumption that k=6. I've clearly got it wrong and would be gratefully for someone to explain how the code works.

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...