Prime Checker
Prime Checker
Code:
def is_prime(n):
if n <= 1:
return False
for i in range(2, int(n ** 0.5) + 1):
if n % i == 0:
return False
return True
Explanation:
This script checks whether a number is prime or not.
It iterates through potential divisors up to the square root of the number for efficiency.