thank you so much sir yeh book se padhne pe bilkul samajh nahi aya tha ki while loop k baad kya ho raha tha
@akverma6752 жыл бұрын
Excellent explained
@abolibhanuse1516 Жыл бұрын
Very good explanation ❤️
@ryanpanhalkar86266 ай бұрын
Very helpful
@prashanthiremath2118 Жыл бұрын
Well explained.
@pratibhaprasad6848 Жыл бұрын
Thanks sir
@ManojKumar-hz2odАй бұрын
sir app bahut ache ho ab ka javab nahiii
@manojvijyant312 Жыл бұрын
def factorial(num): if num == 0: return 1 else: return num * factorial(num-1) num = int(input("Enter a number: ")) print("Factorial of",🚁 num, "is", factorial(num)) Sir could u explain me this line that how does it work return num * factorial(num-1)
@harshitpatel60902 ай бұрын
It work like if you take no. 4 than 4*(3!) like thiss