python Copy def fact(n): """Recursive function to find factorial""" if n == 1: return 1 else: return (n * fact(n - 1)) a = 6 print("Factorial of", a, ...
確定! 回上一頁