判断数字是否为偶数

判断给定的数字是否为偶数。

  • 使用取模(%)运算符判断一个数字是奇数还是偶数。
  • 如果数字是偶数,返回True;如果数字是奇数,返回False
def is_even(num):
  return num % 2 == 0

is_even(3) # False