Files
30-seconds-of-code/snippets/is_odd.md
2022-06-09 13:13:34 +03:00

444 B

title, tags, expertise, unlisted, cover, firstSeen, lastUpdated
title tags expertise unlisted cover firstSeen lastUpdated
Number is odd math beginner true blog_images/interior-6.jpg 2019-08-20T14:21:44+03:00 2021-01-04T12:47:04+02:00

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