Python · lambda, Recursion & Built-in Functions
What does this print? ``` def fac(n): if n > 1: return fac(n-1) * n return 1 print(fac(0)) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
