Page 1 of 1

Fill in the line of the following Python code for calculating the factorial of a number. def fact(num): if num == 0:

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
a) num*fact(num-1)
b) (num-1)*(num-2)
c) num*(num-1)
d) fact(num)*fact(num-1)