📢 QuizNe.vn will officially cease operations on 27/08/2026. Thank you for being with us.
- def test_recursive(): assertEqual(factorial(5), 120)
- def factorial(n): if n == 0: return 1 else: return n * factorial(n-1)
- lambda x: x*x
- def wrapper(func): return func