Answers for "python know all factors of a number"

-2

to find factors of a number in python

# Python Program to find the factors of a number

# This function computes the factor of the argument passed
def print_factors(x):
   print("The factors of",x,"are:")
   for i in range(1, x + 1):
       if x % i == 0:
           print(i)

num = 6

print_factors(num)
Posted by: Guest on November-03-2020

Code answers related to "python know all factors of a number"

Python Answers by Framework

Browse Popular Code Answers by Language