Answer to Question #243888 in Python for prime

Question #243888

3-digit Armstrong Number

Write a program to check if a given 3-digit number X is an Armstrong number or not.


Note: A number is an Armstrong number if the number is equal to the sum of the Nth power of its digits.


Input

The first line is an integer X.


Output

The output should be a single line containing True if it satisfies the given conditions, False in all other cases.


Explanation

In the given example X = 371,

The number of digits in 371 is 3.


So, 33 + 73 + 13 = 371. Hence, 371 is an Armstrong number.


So, the output should be True.


Sample Input 1

371

Sample Output 1

True

Sample Input 2

351

Sample Output 2

False




1
Expert's answer
2021-09-28T13:18:50-0400
def IsArmstrong(n):
    count = 0
    digits = []
    y = n
    while n > 0:
        i = n % 10
        digits.append(i)
        n //= 10
        count += 1
    sum = 0
    for x in digits:
        sum += x ** count
    return (sum == y)


x = int(input())
print(IsArmstrong(x))

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS