""" File : primeCheck.py Author : Diesburg Description : Is the input prime? """ # Let's get the number to check and do error checking number = int(input("Please enter a number greater than 2. ")) while number<2: number = int(input("Please enter a number greater than 2. ")) isPrime = True #break out condition # Can we implement the while loop as a for loop? divisor = 2 while divisor