Python program to check prime number | Explained

Опубликовано: 17 Март 2026
на канале: SHAAD DEV STUDIO
13
1

In this video,we will write a program in Python to check whether the input number is prime or not. A number is said to be prime if it is only divisible by 1 and itself. For example 13 is a prime number because it is only divisible by 1 and 13, on the other hand 12 is not a prime number because it is divisible by 2, 4, 6 and number itself.