Armstrong number Program in Python

Advertisements

Prev Tutorial Next Tutorial

Armstrong number Program in Python

You can write this program using for loop and while loop. Follow same concept like C programming only change syntax.

Armstrong number Program in Python

print("Enter any number: ")
number = int(input())
temp = int(number)
Sum = 0
 
while(temp != 0):
    rem  = temp % 10 
    Sum  = Sum + (rem * rem * rem) 
    temp = temp / 10 
 
if(number == Sum):
    print ("Armstrong Number")
else:
    print ("Not an Armstrong Number")

Output 1

	
Enter any number: 132
Not an Armstrong number

Output 2

	
Enter any number: 153
Armstrong number

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements