Question

(Python) (15 points) Fundamental theorem of number theory states that every natural number n can be expressed as a product of

0 0
Add a comment Improve this question Transcribed image text
Answer #1
def is_prime(number):
    if(number <= 1):
        return False
    for x in range(2,number):
        if number%x == 0:
            return False
    return True

def factors(n):
    result = []
    i = 2
    while (n!=1):
        while (n % i == 0 and is_prime(i)):
            result.append(i)
            n = n / i
        i += 1
    return result

def main():
    num = eval(input("Enter number: "))
    result = factors(num)
    print(result)

main()

Note: Please comment below if you have any doubts

Please up vote the solution if it helped. Thanks!

Add a comment
Know the answer?
Add Answer to:
(Python) (15 points) Fundamental theorem of number theory states that every natural number n can be...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT