Jun-12-2021, 02:54 AM
(This post was last modified: Jun-12-2021, 08:00 AM by Yoriz.
Edit Reason: Added code tags
)
#n natural number s def func(q): if q>0: return func(q-1) return q elif q==0: return 0 print(func(5))So I understood a lot of recursion now I want to print natural no's outside the function...help me trace the code y o/p is 0?