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 »