Answers for "Find Factors of a Number Using Function"

0

Find Factors of a Number Using Function

def FindFact(n):
    for i in range(1, n+1):
        if n % i == 0:
            print(i, end=" ")
    print()

print("Enter a Number: ", end="")
try:
    num = int(input())
    print("\nFactors of " +str(num)+ " are: ", end="")
    FindFact(num)
except ValueError:
    print("\nInvalid Input!")
Posted by: Guest on April-10-2022

Code answers related to "Find Factors of a Number Using Function"

Python Answers by Framework

Browse Popular Code Answers by Language