316 B
316 B
title, tags, unlisted
| title | tags | unlisted |
|---|---|---|
| is_odd | math,beginner | true |
Checks if the given number is odd.
- Checks whether a number is even or odd using the modulo (
%) operator. - Returns
Trueif the number is odd,Falseif the number is even.
def is_odd(num):
return num % 2 != 0
is_odd(3) # True