Travis build: 41

This commit is contained in:
30secondsofcode
2019-08-23 06:49:03 +00:00
parent f8322ce270
commit 2aa19e8cda

View File

@ -1380,7 +1380,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 != 0
```
<details>