Files
30-seconds-of-code/snippets/is_odd.md
2020-09-15 16:25:15 +03:00

19 lines
328 B
Markdown

---
title: is_odd
tags: math,beginner
---
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.
```py
def is_odd(num):
return num % 2 != 0
```
```py
is_odd(3) # True
```