30秒学会 Python 片段 · 2022年9月10日

30秒学会 Python 片段 – Number is odd

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

翻译自:https://www.30secondsofcode.org/python/s/is-odd