Search This Blog
Available Codings for Programming of C, C++, PYTHON, JAVA and HTML.
Welcome to Coding 4 Programming
- Get link
- X
- Other Apps
Labels
To Check Perfect Number | Function | For Loop | Python
Python Program To check whether Entered Number is Perfect Number or Not through user defined Function with For Loop.
According to Wikipedia : In number theory, a perfect number is a positive integer that is equal to the sum of its proper positive divisors, that is, the sum of its positive divisors excluding the number itself (also known as its aliquot sum). Equivalently, a perfect number is a number that is half the sum of all of its positive divisors (including itself).
Example : The first perfect number is 6, because 1, 2, and 3 are its proper positive divisors, and 1 + 2 + 3 = 6. Equivalently, the number 6 is equal to half the sum of all its positive divisors: ( 1 + 2 + 3 + 6 ) / 2 = 6. The next perfect number is 28 = 1 + 2 + 4 + 7 + 14. This is followed by the perfect numbers 496 and 8128.
Coding of Above Program:
- def divisor(n):
- l=[n]
- for i in range(1,n):
- if(n%i==0):
- l.append(i)
- return l
- print('''To Check whether the Entered Number
- is Perfect Number or Not.''')
- n=int(input("Enter Number="))
- div=divisor(n)
- sum=0
- for i in range(0,len(div)):
- sum+=div[i]
- if(sum/2==n):
- print("Entered Number is Perfect Number")
- else:
- print("Entered Number is Not Perfect Number")
- Screenshot of Above Coding in Visual Studio Code with Output.
- Get link
- X
- Other Apps
Labels:
Python
Popular Posts
To Check Prime Number | For Loop | Python
- Get link
- X
- Other Apps
Comments
Post a Comment