Program to Find Armstrong Number
Program to Find Armstrong Number Example of Find Armstrong Number: while True: print(“Press 1 For Check Armstrong”) print(“Press 2 For […]
Program to Find Armstrong Number Read More »
Program to Find Armstrong Number Example of Find Armstrong Number: while True: print(“Press 1 For Check Armstrong”) print(“Press 2 For […]
Program to Find Armstrong Number Read More »
Program to Find American Standard Code for Information Interchange(ASCII) of Character Example of ASCII to Character x=input(“Enter Charactor :”) print(ord(x))
Program to Find ASCII of Character Read More »
How to Find Celsius to Fahrenheit Example of Celsius to Fahrenheit while True: print(“Press 1 Celsius to Fahrenheit”) print(“Press 2
How to find Fahrenheit to celcius Read More »
How to Find Even Odd in python Example of Find Even Odd in python x=int(input(“Enter No. :”)) if (x%2==0): print(“even”)
Program to Find Even Odd in python Read More »
Program to Find the Factor of Number. Example: Program to Find the Factor of Number. x=int(input(“Enter No. :”)) for i
Program to find factors of a number python Read More »
Take Something Return Nothing Program addition of two number Example def add(): print(“Print 1st number”) x=int(input()) print(“Print 2nd number”) y=int(input())
Create the program addition of two number using the function Read More »
Previous topic next topic Python Pre-define function String Predefine function strip( ) function This method removes any whitespace from the
Python Pre-define function Read More »
Previous topic next topic Python dictionary data type A dictionary is a collection that is unordered, changeable, and indexed in
Python Dictionary data type Read More »
Previous topic next topic Python sets data type Python Set is a collection that is unordered, unindexed, No duplicate members.
Python Sets data type Read More »
Previous topic next topic Python Mutable Python Mutable data types are those whose values can be changed in place. Lists
Python Mutable Datatypes Read More »