30秒学会 Python 片段 · 2018年1月23日

30秒学会 Python 片段 – is_odd

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