Python Programming
June 17, 2025 at 04:55 PM
What will be the output of this code?
def mystery(n):
if n == 0:
return 0
else:
return n + mystery(n - 1)
print(mystery(3))
🇮🇳
❤️
💩
🇵🇸
🇮🇱
👍
♥
😮
🇵🇰
🗿
60