Write a program to check if …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Thakur Abhishek Raghuvanshi 3 years, 10 months ago
- 1 answers
Related Questions
Posted by Payal Kumari 1 year, 5 months ago
- 0 answers
Posted by Catherine Tympuiñ 1 year, 1 month ago
- 0 answers
Posted by Catherine Tympuiñ 1 year, 1 month ago
- 1 answers
Posted by Jeevesh Jeevesh 1 year, 2 months ago
- 1 answers
Posted by Rupesh Rupesh 1 year, 5 months ago
- 2 answers
Posted by M.Sameeha _ 1 year, 1 month ago
- 0 answers
Posted by Manasvi Bhutada 1 year, 2 months ago
- 1 answers
Posted by Vanshika Prajapati 1 year, 6 months ago
- 1 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Sia ? 3 years, 10 months ago
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! ")
0Thank You