04 Aug Aurora Saturday 13:00 Python Practice 20.08.01.
Question 1: Factorial of any number n is represented by n! and is equal to 1*2*3*….*(n-1)*n. for example: 4! = 1*2*3*4 = 24 3! = 3*2*1 = 6 2! = 2*1 = 2 Also, 1! = 1 0! = 1 Write a program to calculate factorial of a given number. Question 2: Create a loop...