Files
30-seconds-of-code/snippets/is_odd.md
Angelos Chalaris f8322ce270 Fix typo
2019-08-23 09:47:35 +03:00

325 B

title, tags
title tags
is_odd math,beginner

Returns True if the given number is odd, False otherwise.

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