Python Program to Check given number is Prime or not
top of page

Python Program to Check given number is Prime or not

Updated: Jun 4, 2021


Python Program to Check input number is Prime Number Program: n = int(input("Enter any number: "))

if n > 1:

for i in range(2, n):

if n % i == 0:

print("The number is not prime")

break

else:

print("The number is prime")


Output:

Enter any number: 5 The number is prime

Python Program to Check input number is Prime Number Video:



Python program to print all the prime numbers between 1 to 100.

Program:

for a in range (2,100):

for b in range (2,a):

if a%b==0:

break

else:

print(i)

Output:

2

3

5

7

11

:

:

97

Python program to print prime numbers between 1 to 100Video:






Recent Posts

See All

Python program to calculate the factorial of a number

Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument. This program is most for O Level Practical Exam so read it care

NumPy program to find the most frequent value in the list.

This program is most for O Level Practical Exam so read it carefully. Program: import numpy as np x = np.array([1,2,3,4,5,7,2,1,1,1,8,9,1]) print(x) print("most frequent value in the list:") print(np.

bottom of page