392 B
392 B
title, tags, unlisted, firstSeen, lastUpdated
| title | tags | unlisted | firstSeen | lastUpdated |
|---|---|---|---|---|
| is_odd | math,beginner | true | 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
Trueif the number is odd,Falseif the number is even.
def is_odd(num):
return num % 2 != 0
is_odd(3) # True