programming-examples/python/Function/Python function that takes a number as a parameter and check the number is prime or not.py

11 lines
272 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
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
print(test_prime(9))