def isPrime(n, i): if i == n-1: return ("True") elif n%i == 0: return ("False") else: return isPrime(n, i+1)