Friday, December 13, 2019

Write a Python Program Code to Find Factorial of Number

Write a Python Program Code to Find Factorial of Number

Answer:

# Python Program - Find Factorial of a Number

print("Enter 'x' for exit.");
num = input("Enter a number to find its factorial: ");
if num == 'x':
    exit();
else:
    number = int(num);
    if number == 0:
        print("\nFactorial of 0 is 1");
    elif number < 0:
        print("\nFactorial of negative numbers doesn't exist..!!");
    else:
        fact = 1;
        for i in range(1, number+1):
            fact = fact*i;
        print("\nFactorial of", number, "is", fact);

No comments:

Post a Comment

Featured posts

Ethiopian culture calendar language

Ethiopian culture, calendar, language  The Ethiopian language, specifically Amharic, uses a script called Ge'ez script. It consists of 3...

Popular posts