Question: Create a function called factorial, that takes one argument called n, which is an integer. factorial should return the factorial value for n. The Factorial
Create a function called factorial, that takes one argument called n, which is an integer. factorial should return the factorial value for n. The Factorial of a number is that number multiplied by all the numbers less than it, including 1. (5 pts ) 4 factorial or 4! = 4 * 3 * 2 * 1 5 factorial is 5! = 5 * 4 * 3 * 2 * 1
Make sure you create a docstring for your function. (1 pt)
Output:
# Create function here
if __name__ == "__main__": # Put code to test function indented under here. If not your tests may fail. pass
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
