Question: Write a function called divides_evenly that takes two numbers as parameters. Return True if the first number is evenly divisible by the second number. Otherwise,

Write a function called divides_evenly that takes two numbers as parameters. Return True if the first number is evenly divisible by the second number. Otherwise, return False. Carefully write this function in this text box, trying to get all the syntax correct Examples: divides-evenly(10, 5) #-> returns True because 10 is evenly divisible by 5 divides-evenly(25, 7) #-> returns False because 25 is not a multiple of 7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
