Answers for "python number divisible by two other numbers"

1

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)
Posted by: Guest on February-03-2021

Code answers related to "python number divisible by two other numbers"

Python Answers by Framework

Browse Popular Code Answers by Language