def fibonacci(n):
if n==0: return 0
elif n==1: return 1
else: return fibonacci(n-1) + fibonacci(n-2)
This function return the sum of the first n figures of the fibonacci sequnce. Can somebody explain me how does it work. I'm confused about calling the function in itself.