Kebab file names

This commit is contained in:
Angelos Chalaris
2023-04-27 22:00:06 +03:00
parent b9c77eb413
commit f6a215e9e3
107 changed files with 0 additions and 0 deletions

22
snippets/is-odd.md Normal file
View File

@ -0,0 +1,22 @@
---
title: Number is odd
tags: math
unlisted: true
cover: interior-6
firstSeen: 2019-08-20T14:21:44+03:00
lastUpdated: 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 `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
```