Showing posts with label Factorial of a Number Using Functions in Python. Show all posts
Showing posts with label Factorial of a Number Using Functions in Python. Show all posts

Friday, March 8, 2019

Factorial of a Number Using Functions in Python

A very simple program to show you how to perform factorial of a given number by the user using functions in Python

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting.

work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com



Sample Program Output


Program Output

# factorial.py
# Rollyn M. Moises and Jake R. Pomperada
# February 25, 2019    Tuesday
# Bacolod City, Negros Occidental


def factorial(number):
    solve_results = 1
    for i in range(2, number + 1):
        solve_results *= i
    return solve_results


def my_program():
  print();
  print("\t@==================================@")
  print("\t      Factorial of a Number     ")
  print("\t@==================================@")
  print();
  value = int(input("\tEnter a Number : "))
  print("");
  if value < 0:
    print("\tSorry, factorial does not exist for negative numbers")
  elif value == 0:
    print("\tThe factorial of 0 is 1")
  else:
    print("\tThe factorial of",value,"is",factorial(value))
  print();
  repeat = input('\tDo you want to continue ? (Y/N) : ')
  if repeat.upper() == "N":
      print()
      print("\tThank You For Using This Program.")
      print();
      print("\tEND OF PROGRAM");
      quit

  if repeat.upper() == "Y":
      my_program()

if __name__ == '__main__':
    my_program()