This commit is contained in:
Angelos Chalaris
2019-08-23 09:46:59 +03:00
committed by GitHub
parent ae73d4a601
commit c70b90d4fb

View File

@ -10,7 +10,7 @@ Returns `True` if the number is odd, `False` if the number is even.
```py
def is_odd(num):
return num % 2 == `0`
return num % 2 != `
```
```py