Files
2023-05-07 16:07:29 +03:00

405 B

title, type, language, tags, unlisted, cover, dateModified
title type language tags unlisted cover dateModified
Number is odd snippet python
math
true interior-6 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