Easy
Consider the following Python code. What will be the output of this code?
def func(n):
if n == 0:
return 1
return n * func(n-1)
print(func(3))
Author: Vincent CotroStatus: PublishedQuestion passed 1236 times
Edit
Similar QuestionsMore questions about Python