cara mengulangi suatu fungsi

#Simply recursive function that counts from 0 to 10
def count(n): #function named count
	
    if n <= 10: #base case.This is to put a limit to the amount of recursions
    	print(n)
    	count(n+1) # this is a "recursive call" to the function count
      
count(0) # this is where the function is first called.
Troubled Turkey