Files
30-seconds-of-code/snippets/is_odd.md
Isabelle Viktoria Maciohsek 0a2f7993f7 Update snippet descriptions
2020-11-02 19:28:05 +02:00

301 B

title, tags
title tags
is_odd math,beginner

Checks if the given number is odd.

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