How do you find the prime factor of a number in python while loop?

In this post, you will learn a Python program to print prime factors of a number. Before starting the coding part, it should be clear about the prime number and prime factor.

A prime number is a whole number greater than 1, whose only factors are 1 and itself. The prime numbers, which divide the given number perfectly, are known as the prime factors of that number. Basically, it is finding prime numbers that prime numbers multiply together to make the original number. The prime factorization serves useful when working with big numbers, such as in Cryptography or it is a commonly used in mathematical problem to secure public-key encryption systems. For example, if the input number is 110, then the output should be "2 5 11". And if the input number is 99, then the output should be "3 11". With the help of these two conditions, we can check whether a number is a prime factor of a given number or not-

  • The number must be a prime number.
  • The number must perfectly divide the given number.

Program to find prime factors using for loop

Here is the program to find the prime factors of a number using Python. This program allows the user to enter any positive integer using the input[] method. Next, Python returns the prime factors of that number using the nested for loop.

# Python Program to find Prime Factors of a Number
 
num = int[input[" Please enter any number: "]]

for x in range[2, num + 1]:
    if[num % x == 0]:
        chk_prime = 1
        for y in range[2, [x //2 + 1]]:
            if[x % y == 0]:
                chk_prime = 0
                break
            
        if [chk_prime == 1]:
            print[" %d is a Prime Factor of the given number %d" %[x, num]]

Output of the above code -

In the above example, we have used the for loop only. Firstly, we have taken the input from the user using the input[] method and stored it in a variable num. Then, we have applied the for loop from x=2 to x=num+1. Next, we check if the modulo of the value of x and number is equal to 0. Then we keep the count value = 1 and again apply the for loop inside the for loop from y=2 to y=x//2+1. and check the given if condition. If the condition is satisfied, the count value is set to 0 and we break the statement. Then we come out of the for loop and check the condition if count ==1 and print the value of x. Hence the prime factors are printed with their single-single value.

Program to find prime factors using While loop

Here, we take a number from user input and store it in a variable. Next, we obtain the factors of a number with the help of a nested while loop and find whether the factors are prime or not.

# Python Program to find Prime Factors of a Number
 
num = int[input[" Please enter any number: "]]

x = 1

while[x  2:
      print [n]

n = int[input["Enter the number for calculating the prime factors :\n"]]
primefactors[n]

Output:

Enter the number for calculating the prime factors :
650
2
5
5
13

Explanation:

Here firstly we have imported the math library from the python module. Secondly, we have taken the input n as the number and called the function primefactors[]. Thirdly, we have taken primefactors[] as the function and applied while loop and checked if the modulo of the number is coming 0 by dividing it by 2. Fourthly, the while loop will be executed till the number is even and divisible by 2 and printing it and divide the number by 2 at each iteration. After that, we will apply the for loop from ‘i=3’ till the square root of n+1. Then again we will apply while loop inside the for loop and check the condition. At last, if n is greater than 2 then we have printed the number. Hence, all the prime factors of the number get printed.

2. using for loop only

In this program, We will be using for loop only for finding out the prime factors of the given number. we will be applying multiple for loops and try to find the prime factors of the given number.

#using for loop

n = int[input["Enter the number for calculating the prime factors :\n"]]
for i in range[2,n + 1]:
    if n % i == 0:
        count = 1
        for j in range[2,[i//2 + 1]]:
            if[i % j == 0]:
                count = 0
                break
        if[count == 1]:
            print[i]

Output:

Enter the number for calculating the prime factors :
350
2
5
7

Explanation:

In this example, we will be using for loop only. Firstly, we have taken the input from the user as n. Secondly, we have applied the for loop from i=2 to i=n+1. Then, we will check if the modulo of the value of i and number is equal to 0. Then we keep the count value = 1 and again apply the for loop inside the for loop from j=2 to j=i//2+1. and check the given if condition. if the condition satisfies count value is set to 0 and we break the statement. We come out of the for loop and check the condition if count ==1 and print the value of i. hence the primefactors are printed with the single-single value of them.

NOTE:

Suppose we take input as 650 : the prime factors are 2,5,5,13
so, it will print 2,5,13 as all integers one time.

3. Prime Factor Of A Number In Python using while loop only

In this program, We will be using a while loop only for finding out the prime factors of the given number. we will be applying multiple while loops and try to find the prime factors of the given number.

#using while loop

n = int[input["Enter any Number for calculating the prime factors: "]]
i = 1

while[i 

Chủ Đề