Tag: python program for armstrong number

Python Program to check Armstrong number

Last updated on 6th December 2021 by H Sayyed | Category: Python Tutorial

Python Program for Finding Armstrong Number. A number is termed Armstrong number if it’s up to the total of the cubes of its own digits. Lets take an Example: 153 = (1*1*1) + (5*5*5) + (3*3*3) = 153 1634 = (1*1*1*1) + (6*6*6*6) + (3*3*3*3) + (4*4*4*4) = 1634 In the above 153 and 1634 […]

Read more