Today we are going to share a Python program to check if a number is a strong number. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to check if a number is a strong number with the output.
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
To increase your Python knowledge, practice all Python programs, here is a Collection of 100+ Python problems with solutions.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
sum1=0 num=int(input("Enter a number:")) temp=num while(num): i=1 f=1 r=num%10 while(i<=r): f=f*i i=i+1 sum1=sum1+f num=num//10 if(sum1==temp): print("The number is a strong number") else: print("The number is not a strong number") |
Enter a number:234
The number is not a strong number.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.