Today we are going to share a Python Program to check if a number is a perfect 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 whether a number is a perfect number.
1 2 3 4 5 6 7 8 9 | n = int(input("Enter any number: ")) sum1 = 0 for i in range(1, n): if(n % i == 0): sum1 = sum1 + i if (sum1 == n): print("The number is a Perfect number.") else: print("The number is not a Perfect number.") |
Enter any number: 6
The number is a Perfect number.
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
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.