Chapter 3: Problem 14
Implement the factorial function. The factorial of \(n\), written as \(n !\), is defined as $$ n !=n(n-1)(n-2) \cdots 2 \cdot 1 $$ with the special cases $$ 1 !=1, \quad 0 !=1 $$ For example, \(4 !=4 \cdot 3 \cdot 2 \cdot 1=24\), and \(2 !=2 \cdot 1=2\). Write a function fact \((n)\) that returns \(n !\). Return 1 immediately if \(x\) is 1 or 0 , otherwise use a loop to compute \(n !\). Name of program file: fact.py. Remark. You can import a ready-made factorial function by >> from math import factorial >>> factorial (4) 24
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.