Prime number programming in python

Prime Number in Python

Prime number in python | A natural number which has only two factors ( 1 and itself ) is called a prime number. For example- 5 is a prime number because it has only two factors 1 and 5. Similarly, 9 is not a prime number because it has more than 2 factors that are 1,3, and 9.

Python Program to Check Prime Number

To develop a program to check the given number is a prime number or not in Python; first, you should know how to develop a Python program to find out all factors of a number. Because if any number has more than 2 factors then only, it is a prime number. All negative numbers, 0 and 1 are not the prime numbers.

Using For Loop

This python program using the for loop. We will take integer numbers while declaring the variables. Then, check given number is prime number or not using the for loop and finally, the result will be displayed on the screen.

# Python program to check if a number is prime or not # take inputs num = int(input('Enter a number: ')) # If number is greater than 1 if num > 1: for i in range(2, num//2): if (num % i) == 0: print(num, "is not a prime number") break else: print(num, "is a prime number") else: print(num, "is not a prime number")

Output for the different input values:-

Читайте также:  Arrow right html code

Enter a number: 5
5 is a prime number

Enter a number: 20
20 is not a prime number

Enter a number: 47
47 is a prime number

Prime Number Program in Python using While Loop

In the previous program, we will check prime number using for loop but in this program, check if a number is prime or not using the while loop.

# Python program to check if a number is prime or not # take inputs num = int(input('Enter a number: ')) count = 0 i = 2 # If number is greater than 1 while(i 

Enter a number: 13
13 is a prime number

Prime Number in Python using Function

In this program, We can also take the help of a user-defined function to check if a number is prime or not. A function is a block of code that performs a specific task.

# Python program to check if a number is prime or not def isPrime(num): #user-defined function if num > 1: for i in range(2, num//2): if (num % i) == 0: return False break else: return True else: return False # take inputs num = int(input('Enter a number: ')) # calling function and display result if(isPrime(num)): print(num, "is a prime number") else: print(num, "is not a prime number")

Enter a number: 250
250 is not a prime number

Program Using Recursion

We can also use the recursion technique to check if a number is prime or not in Python. A technique of defining the method/function that contains a call to itself is called recursion.

# Python program to check if a number is prime or not using recursion def isPrime(num, i = 2): #user-defined function if (num num): return True # Check next divisor return isPrime(num, i + 1) # take inputs num = int(input('Enter a number: ')) # calling function and display result if(isPrime(num)): print(num, "is a prime number") else: print(num, "is not a prime number")

Enter a number: 11
11 is a prime number

If you enjoyed this post, share it with your friends. Do you want to share more information about the topic discussed above or do you find anything incorrect? Let us know in the comments. Thank you!

Источник

Prime Numbers in Python

prime numbers in python

A Prime number can be explained as a finite number that is only divisible by 1 and by itself. It goes on like 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, etc. This series of numbers can be recreated, and any given number can be identified if it is a prime number or not by implementing the logic in the python programming language. A few of the ways for this operation are using python libraries, coding with while loops, coding with loops and conditions, and using the lambda function.

Web development, programming languages, Software testing & others

Prime Numbers: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97 etc.

Techniques to Implement Prime Number in Python

Prime numbers can be implemented in python by several techniques; four among them are explained below:

1. Using Lambda Function

# Prime determination method def Prime_series(number): for iter in range(2,number): if is_prime(iter) == True: print(iter,end = " ") else: pass number = int(input("Enter the input Range : ")) is_prime = lambda number: all( number%i != 0 for i in range(2, int(number**.5)+1) ) Prime_series(number) 

Prime Numbers in Python-1.1

Explanation: This program determines the range of prime numbers using the lambda function technique; lambda represents an anonymous function or an orphan function. The program executes in such a manner that once a specific integer is keyed in by the user, then all the prime numbers within the range of 2 to key in the input will be generated and displayed.

Program Flow:

  1. The input range is keyed in by the user; the python input function is used to receive the user’s input. The received input is handily cast into INT type.
  2. The casted input is passed as an argument in a function call process. This function is responsible for triggering the lambda function for each and every integer in the given range of 2 to key in the input.
  3. Hence the lambda function is called for each and every integer, and a prime check is carried on; the below-formulated logic is used for attaining this prime check, number%2 != 0

So as per the above-formulated logic, a Boolean value will be returned; the next step for each verified integer in the function is to check whether the returned Boolean is true or false, in the case when it falls true, then the corresponding variable is printed in the console.

2. Using for Loops and Conditions

# Prime determination method number = int(input("Enter the input Range : ")) for iter in range(2,number): for i in range(2,iter): if (iter%i==0): break else: print(iter) 

Prime Numbers in Python-1.2

Explanation: This program determines the range of prime numbers using for loops and conditions; the program executes in such a manner that once a specific integer is keyed in by the user, then all the prime numbers within the range of 2 to keyed in input value will be generated and displayed.

Program Flow:

  1. The input range is keyed in by the user; the python input function is used to receive the user’s input. The received input is handily casted into INT type.
  2. Here, a nested loop is used to determine two integers; the first loop ensures to retrieve all the elements or integers falling within the range keyed. The second for-loop is responsible for determining the denominator of the prime check.
  3. For every integer value denominated, if the outcome of the process is not equal to zero, then the integer handled is printed to the console.
  4. This process is looped on and executed for every integer in the mentioned range of 2 to keyed in the input.

3. Using While Loops

range = int(input('Enter the integer range to find prime no: ')) number = 1 while(number 

Using While loop

Explanation: This program determines the range of prime numbers using while loops and conditions; the program executes in such a manner that once a specific integer is keyed in by the user, then all the prime numbers within the range of 2 to the keyed in the input will be generated and displayed.

Program Flow:

  1. The input range is keyed in by the user; the python input function is used to receive the user’s input. The received input is handily casted into INT type.
  2. Here a while loop is used for the prime check; the loop control is designed on a condition check where the looping process will be happening until the input value is greater than the loop control variable. Notable, the loop control variable is initiated with 1 and incremented by 1 on each and every looping.
  3. Here again, for every integer value denominated in the process’s outcome equal to zero, then the integer handled is printed as ” Not a prime number”; otherwise wise it is printed as ” Prime Number.”
  4. This process is looped on and executed for every integer in the mentioned range of 1 to a keyed input value.

4. Using Python Libraries

import sympy start = int(input( " starting value : " )) end = int(input( " ending value : " )) list_prime_values = list(sympy.primerange(start,end+1)) print("All prime values in the range : " , list_prime_values)

Python Libraries

Explanation: This program determines the range of prime numbers using predefined libraries; here, the sympy library is used for attaining the prime check; the program flow is designed to expect the starting and ending range for the determination of prime numbers.

Program Flow:

  1. The starting and ending range is keyed in by the user; the python input function is used for receiving the input from the user. The received input is handily casted into INT type.
  2. The keyed-in start and end range are passed as input to the prime range function of the sympy library. The output of the function is casted into a list variable, and then it printed.

This is a guide to the Prime Numbers in Python. Here we discuss the basic concept and techniques to implement prime numbers in python. You may also look at the following articles to learn more –

Источник

Оцените статью