Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions factors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Python Program to find the factors of a number

# define a function
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)