Prime Test

Step 2: Add the following function to your project:
def is_divisible(a, b):
  # return True if a divided by b has a remainder of 0
  return a % b == 0
Last step Next step