We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c81706 commit dbea562Copy full SHA for dbea562
exercises/06-lambda-functions/README.md
@@ -40,6 +40,6 @@ multiply = lambda p1,p2: p1 * p2
40
```py
41
# this function return True if a number is odd.
42
def is_odd(num):
43
- return (num % 2) != 0:
+ return num % 2 != 0
44
```
45
0 commit comments