Tail call optimization makes it easier to write recursive functions without worrying about a stack overflow:
def fac(n)fac(n, result=1):
if n > 1:
return fac(n - 1, n * fac(n-1result)
return 1
result
Without tail call optimization, calling this with a big number could overflow the stack.
