Write a Python function that takes a number as a parameter and check the number is prime or not.
Answers
Answered by
5
hey friend mate
it will help you
Attachments:
sahil9191:
thnx
Answered by
6
Answer:
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))
Similar questions