Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python Armstrong Number

number = 153
temp = number
add_sum = 0
while temp!=0:
    k = temp%10
    add_sum +=k*k*k
    temp = temp//10
if add_sum==number:
    print('Armstrong Number')
else:
    print('Not a Armstrong Number')
Comment

armstrong python

def check_if_armstrong():
    number = input("Enter number: ")
    
    sum_of_cube = 0
    for i in range(len(number)):
        sum_of_cube = sum_of_cube + pow(int(number[i]), 3)
    print(sum_of_cube)
    
    if int(number) == sum_of_cube:
        print(f'{number} is armstrong')
    else:
        print(f'{number} isn't armstrong')
        
check_if_armstrong()
Comment

armstrong number in python

# Python program to determine whether
# the number is Armstrong number or not
 
# Function to calculate x raised to
# the power y
def power(x, y):
     
    if y == 0:
        return 1
    if y % 2 == 0:
        return power(x, y // 2) * power(x, y // 2)
         
    return x * power(x, y // 2) * power(x, y // 2)
 
# Function to calculate order of the number
def order(x):
 
    # Variable to store of the number
    n = 0
    while (x != 0):
        n = n + 1
        x = x // 10
         
    return n
 
# Function to check whether the given
# number is Armstrong number or not
def isArmstrong(x):
     
    n = order(x)
    temp = x
    sum1 = 0
     
    while (temp != 0):
        r = temp % 10
        sum1 = sum1 + power(r, n)
        temp = temp // 10
 
    # If condition satisfies
    return (sum1 == x)
 
# Driver code
x = 153
print(isArmstrong(x))
 
x = 1253
print(isArmstrong(x))
Comment

PREVIOUS NEXT
Code Example
Python :: python split tuples into lists 
Python :: NameError: name ‘pd’ is not defined 
Python :: python reduce function to sum array 
Python :: make csv lowercase python 
Python :: python count lines in string 
Python :: max of 2d array python 
Python :: how to insert sound in python 
Python :: create np nan array 
Python :: launch google chrome using python 
Python :: conda specify multiple channels 
Python :: python get name of tkinter frame 
Python :: python check variable is tuple 
Python :: how to know if the numbers is par in python 
Python :: create a vector of zeros in r 
Python :: pyhton turtle kill 
Python :: python datetime subtract seconds 
Python :: pandas filter rows by value in list 
Python :: python read excel sheet name 
Python :: lda scikit learn 
Python :: download a file from kaggle notebook 
Python :: frequency unique pandas 
Python :: python strftime utc offset 
Python :: find null value for a particular column in dataframe 
Python :: Pyo example 
Python :: pandas convert date column to year and month 
Python :: how to know where python is installed on windows 
Python :: distribution plot with curve python 
Python :: emoji in python 
Python :: semicolons in python 
Python :: Violin Plots, Python 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =