How to Start this project:
- Call the function 'getprimefactors(x)'
- Change the value of x which will return a list containing all of its prime factors.
Write a python function to find all the prime factors.
An integer value.
A list of prime numbers.
For e.g.
getprimefactors(1000) [2,2,2,5,5,5]