0 Comments
Answer:
def dividable_by_5(number):
return number % 5 == 0
print(dividable_by_5(15))
print(dividable_by_5(7))
Step-by-step explanation: