Today we are going to share a Python program to find factors of 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 find factors of number.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | print("Press 'x' for exit."); num = input("Please enter a number: "); if num == 'x': exit(); else: count = 0; number = int(num); for i in range(2, number-1): if number%i == 0: print(i); i += 1; count += 1; if count==0: print(number,"is a prime number."); |
Press ‘x’ for exit.
Please enter a number: 190
2
5
10
19
38
95
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.