Python program to find whether a number is prime
Topic: Python program to find whether a number is prime
Solution
def test_prime(n): if (n==1): return False elif (n==2): return True; else: for x in range(2,n): if(n % x==0): return False return True
List all Python Programs