✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
1. Use the following code in answering the questions that follow:
def is_divisible(x,y): return x%y==0 print(is_divisible(4,2))
What is the output of the code above?