Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

factorial sequence code in python with while loops

num = int(input("enter a number: "))
 
fac = 1
i = 1
 
while i <= num:
fac = fac * i
i = i + 1
 
print("factorial of ", num, " is ", fac)
Source by www.thecrazyprogrammer.com #
 
PREVIOUS NEXT
Tagged: #factorial #sequence #code #python #loops
ADD COMMENT
Topic
Name
6+2 =