Set 112 Practical Question
⭐ Q13. Recursion से Nth Fibonacci Number निकालना
Example Code (Read Only):
if n==1: return 0 if n==2: return 1 n = int(input("Enter term: "))
Python Online Editor
Font Size:
12px
14px
16px
18px
20px
24px
30px
RUN