How do you get a prime number in a while loop in python?

In this post, we will write a program in Python to check whether the input number is prime or not using while loop.

How to write Prime number Program in Python?

  • Prime number is a number that is greater than 1 and divided by 1 or itself.
  • In other words, prime numbers can’t be divided by other numbers than itself or 1.
  • For example- 2, 3, 5, 7, 11, 13, 17, 19, 23…. are the prime numbers.
  • Let’s see the prime number program in Python.

In this Python program, we will take an input from the user and check whether the number is prime or not.

num=int[input["Enter a number [ greater than 1]"]]  

f=0

i=2

whilei

Chủ Đề