Showing posts with the label python

factorial program

def factorial(n):     if (n==0 or n==1):         return 1     else:   …

How to print pattern P in python

How to print pattern P using Python #code: for i in range…

Patten B in python

How to print alphabet B in Python To print pattern B here's t…

pattern A python program

Python Program How to print patter A in python      #code for i in ra…

Master Theoram

2.   Master Theoram:    Master theorem  is used in ca…

Load More That is All