find numbers divisible by 2 but not divisible by 5 in python code example
Example: python number divisible by two other numbers
def is_divisible(n,x,y):
divisible_one = n % x
divisible_two = n % y
if divisible_one == 0 and divisible_two ==0:
return print(True)
else:
return print(False)