Files
30-seconds-of-code/snippets/is_even.md
Isabelle Viktoria Maciohsek cbc78ee450 Bake dates into snippets
2021-06-13 19:38:10 +03:00

395 B

title, tags, unlisted, firstSeen, lastUpdated
title tags unlisted firstSeen lastUpdated
is_even math,beginner true 2019-08-20T14:21:44+03:00 2021-01-04T12:47:04+02:00

Checks if the given number is even.

  • Check whether a number is odd or even using the modulo (%) operator.
  • Return True if the number is even, False if the number is odd.
def is_even(num):
  return num % 2 == 0
is_even(3) # False