fact={}
def factorial(n):
fact[0]=1
fact[1]=1
if n==0 and n==1:
return 1
else:
for i in range(2,n+1):
fact[i]=i*fact[i-1]
return fact[n]
num=int(input("Enter number to find factorial : "))
print("Factorial of ",num," is ",factorial(num))
print("The values")
print(fact)
Tuesday, 28 November 2017
Subscribe to:
Post Comments (Atom)
Python Program to find Fabonacci
fabtab={} def fabonacci(n): fabtab[0]=0 fabtab[1]=1 for i in range(2,n+1): fabtab[i]=fabtab[i-1]+fabtab[i-2] ...

-
#include stdio.h > #include stdlib.h > #include conio.h > int arr[100], size=0; void insert_beg(); void insert_pos(); void inser...
-
input_string=input("Enter a string : ") output_string=input_string[::-1] print("Reverse of string ",input_string,...
-
#include< iostream > #include< conio.h > using namespace std; int main() { int base, height; float area...
No comments:
Post a Comment