Solution Exercise 67: prim number in Python
Exercise 67 Write a function in Python which takes as argument an integer n and which returns True if the number n is prime and False if n is not prime without using any predefined function. Solution def primNumber(n):…