mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
c7a5f1673e
* Added Python Program to Check Perfet Number * CodeSpell Error Fix - 1 * Build Error Fix - 1 * Made suggested changes * Use generator expression * Added Python Program to Check Krishnamurthy Number or not * Added Python Program to Check Krishnamurthy Number * Added Python Program to Check Krishnamurthy Number or not * Build Error Fix - 1 * Build Error Fix - 2 * Fix Brackets positions * Fix Character Exceeding Error * Made Review Changes * Build Error Fix - 3 * Build Error Fix - 4 * Update krishnamurthy_number.py Co-authored-by: Christian Clauss <cclauss@me.com>
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
"""
|
|
== Perfect Number ==
|
|
In number theory, a perfect number is a positive integer that is equal to the sum of
|
|
its positive divisors, excluding the number itself.
|
|
For example: 6 ==> divisors[1, 2, 3, 6]
|
|
Excluding 6, the sum(divisors) is 1 + 2 + 3 = 6
|
|
So, 6 is a Perfect Number
|
|
|
|
Other examples of Perfect Numbers: 28, 486, ...
|
|
|
|
https://en.wikipedia.org/wiki/Perfect_number
|
|
"""
|
|
|
|
|
|
def perfect(number: int) -> bool:
|
|
"""
|
|
>>> perfect(27)
|
|
False
|
|
>>> perfect(28)
|
|
True
|
|
>>> perfect(29)
|
|
False
|
|
|
|
Start from 1 because dividing by 0 will raise ZeroDivisionError.
|
|
A number at most can be divisible by the half of the number except the number
|
|
itself. For example, 6 is at most can be divisible by 3 except by 6 itself.
|
|
"""
|
|
return sum(i for i in range(1, number // 2 + 1) if number % i == 0) == number
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Program to check whether a number is a Perfect number or not...")
|
|
number = int(input("Enter number: ").strip())
|
|
print(f"{number} is {'' if perfect(number) else 'not '}a Perfect Number.")
|