Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

find the factorial of a given integer in python

import math
num = 5
print("The factorial of 5 is : ", end="")
print(math.factorial(num))

# output - The factorial of 5 is : 120

# The factorial of a number is the function that multiplies the number by every natural number below it
# e.g. - 1 * 2 * 3 * 4 * 5 = 120
Comment

Program for factorial of a number in python

# Python 3 program to find
# factorial of given number
 
# Function to find factorial of given number
def factorial(n):
      
    if n == 0:
        return 1
     
    return n * factorial(n-1)
  
# Driver Code
num = 5;
print("Factorial of", num, "is",
factorial(num))
  
# This code is contributed by Smitha Dinesh Semwal
Comment

Finding factorial of a number in Python

# ___PYTHON___
# Finding factorial of a number:
userInput = int(input("Enter an integer: "))

def factorial(n):

  if n == 0 or n == 1:
    return 1

  else :
    return n * factorial(n - 1)

x = factorial(userInput)
print(x)
Comment

find factorial in python

factorial = lambda n: n * factorial(n-1) if n > 1 else 1

print(factorial(3)) # 6 
print(factorial(5)) # 120
Comment

Python function to compute factorial of a number.

def factorial(n):
    if n == 0:
        return 1
    else:
        return n * factorial(n-1)
n=int(input("Input a number to compute the factiorial : "))
print(factorial(n))
Comment

factorial of a number in python

num = int(input("Enter a number to find factorial: "))
mul = 1
for x in range(1, num+1):
    mul *= x

print("Factorial of", num, "=", mul)
Comment

Python 3 program to find factorial of given number

# Python 3 program to find
# factorial of given number
def factorial(n):
     
    # single line to find factorial
    return 1 if (n==1 or n==0) else n * factorial(n - 1)
 
# Driver Code
num = 5;
print("Factorial of",num,"is",
factorial(num))
 
# This code is contributed by Smitha Dinesh Semwal
Comment

Python 3 program to find factorial of given number

# Python 3 program to find
# factorial of given number
def factorial(n):
     
    # single line to find factorial
    return 1 if (n==1 or n==0) else n * factorial(n - 1)
 
# Driver Code
num = 5;
print("Factorial of",num,"is",
factorial(num))
 
# This code is contributed by Smitha Dinesh Semwal
Comment

Python 3 program to find factorial of given number

# Python 3 program to find
# factorial of given number
def factorial(n):
     
    # single line to find factorial
    return 1 if (n==1 or n==0) else n * factorial(n - 1)
 
# Driver Code
num = 5;
print("Factorial of",num,"is",
factorial(num))
 
# This code is contributed by Smitha Dinesh Semwal
Comment

find factorial of a number in python

# Python program to find the factorial of a number provided by the user.

# change the value for a different result
num = 7

# To take input from the user
#num = int(input("Enter a number: "))

factorial = 1

# check if the number is negative, positive or zero
if num < 0:
   print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
   print("The factorial of 0 is 1")
else:
   for i in range(1,num + 1):
       factorial = factorial*i
   print("The factorial of",num,"is",factorial)
Comment

Python 3 program to find factorial of given number

# Python 3 program to find
# factorial of given number
def factorial(n):
     
    # single line to find factorial
    return 1 if (n==1 or n==0) else n * factorial(n - 1)
 
# Driver Code
num = 5;
print("Factorial of",num,"is",
factorial(num))
 
# This code is contributed by Smitha Dinesh Semwal
Comment

PREVIOUS NEXT
Code Example
Python :: round up division python 
Python :: clean punctuation from string python 
Python :: how to count unique values in dataframe df python 
Python :: python get pixel color from screen 
Python :: python Program to check if a given year is leap year 
Python :: pandas dataframe remove rows by column value 
Python :: python print raw string 
Python :: exeption python syntax 
Python :: assign python 
Python :: python append a file and read 
Python :: pandas select columns by index 
Python :: django orm count 
Python :: python adding digits 
Python :: add time to a datetime object 
Python :: merge two Python dictionaries in a single expression 
Python :: pandas gropu by 
Python :: django secure variable 
Python :: pandas name of day 
Python :: how to resize windows in python 
Python :: df groupby loop 
Python :: pandas backfill 
Python :: python cheat sheet 
Python :: enum python 
Python :: time addition in python 
Python :: convert price to float python 
Python :: python convert string to lowercase 
Python :: how to open application using python 
Python :: change colors markdown pyhton 
Python :: formatting in python 
Python :: python count bits 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =