We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61a39ab + be715d3 commit 5eac136Copy full SHA for 5eac136
exercises/06-lambda-functions/README.es.md
@@ -29,5 +29,5 @@ Así es como declararías una función normal
29
```python
30
# this function return True if a number is odd.
31
def is_odd(num):
32
- return (num % 2)! == 0:
+ return (num % 2) != 0
33
```
0 commit comments