Answer to Question #305824 in Python for Pyara

Question #305824

In mathematics, the notation n! represents the factorial of the nonnegative integer n. The factorial of n is the product of all the nonnegative integers from 1 to n. For example:


7! = 1 x 2 x 3 x 4 x 5 x 6 x 7 = 5,040


Write a program that lets the user enter a nonnegative integer and then uses a loop to calculate the factorial of that number. Print the factorial to standard output.


Sample Run

Enter a nonnegative integer:7↵ 

5040↵


1
Expert's answer
2022-03-04T12:31:39-0500
Num=-1
while(Num<0):
    Num = int(input("Enter a number (>0): "))


P=1
for r in range(1,Num+1):
    P = P*r
print("!",Num," = ",P)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS