Today we are going to share a Python Program to find the factors of a 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 the factors of a number.
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
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 15 | def print_factors(x): # This function takes a number and prints the factors print("The factors of",x,"are:") for i in range(1, x + 1): if x % i == 0: print(i) # change this value for a different result. num = 320 # uncomment the following line to take input from the user #num = int(input("Enter a number: ")) print_factors(num) |
The factors of 320 are:
1
2
4
5
8
10
16
20
32
40
64
80
160
320
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.