write a python program to check weather the given number is Armstrong or not
Answers
Answered by
0
Explanation:
Did you make this dress yourself
Answered by
0
Answer:
Python Program to Check Armstrong Number
num = int
sum = 0.
temp = num.
while temp > 0:
digit = temp % 10.
sum += sum:
Similar questions