In today’s tutorial, we are going to share a Python program to check Prime number. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to check Prime number.
Copy the below python program and execute it with the help of python compiler. At the end of this tutorial, We have shared the output of below program.
1 2 3 4 5 6 7 8 9 10 11 12 13 | num = int(input("Enter a number: ")) if num > 1: for i in range(2,num): if (num % i) == 0: print(num,"is not a prime number") print(i,"times",num//i,"is",num) break else: print(num,"is a prime number") else: print(num,"is not a prime number") |
#First try
Enter a number: 11 is a prime number
#second try
Enter a number: 51 is not a prime number
3 times 17 is 51
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.