"""Prompt Write three usage examples for the following function. Add explanations to each example: def is_divisible(a, b): if not a % b: return True return False """