diff --git a/README.md b/README.md index 5773beefa..a5ac14f37 100644 --- a/README.md +++ b/README.md @@ -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 ```