This example demonstrates how to check if a number is even in python using the modulo operator (% 2). The function returns “even” for numbers divisible by 2, and “odd” otherwise. It works for positive, negative, and zero values, illustrating a fundamental Python conditional technique.