| Write a program in Python to compute Prime Factors of an Integer
Below is the program to write a program in python to compute Prime factor. Here in this program while loop is used and the factors of the integer are computed by using the modulus operator and checking if the remainder of the number divided by i is 0.
| | |