Answers for "Find Factors of a Number Using Class"

0

Find Factors of a Number Using Class

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

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

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

Python Answers by Framework

Browse Popular Code Answers by Language