Print Factors of a given Number in Python | Python Programs with Example

preview_player
Показать описание
Write a program to find the factors of a given number
n=int(input('enter any number'))
print('The factors are:')
for i in range(1,n+1,1):
if n%i==0:
print(i)
#FactorsOfGivenNumber
#PrintFactorsOfGivenNumberinPython
#PythonTutorials

programs in python - Simple programs in python for practice
Programs in Python |python interview questions | python tutorial
python interview questions - 150 most asked python interview questions and answers.
Questions and Answers for Beginners; Python Interview Questions and Answers for Intermediates · Python Interview Questions and Answers for Experienced
Here is the list of best Python interview questions and answers for freshers that can be helpful to crack Python job interview 150+ Python Interview Questions and Answers to make you prepare for your upcoming Python Interviews
Python Interview Questions for data science
Python Interview Questions and Answers for Testers
Python interview questions for freshers
Рекомендации по теме
Комментарии
Автор

My question is sum of the factors of the number.
Sir pls solve my problem.

ananyamondal