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 355a13a commit b681c43Copy full SHA for b681c43
exercises/07-lambda-function-two/README.md
@@ -9,8 +9,8 @@ tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
9
Lambda functions allow a short syntax for writing function expressions.
10
11
```python
12
-multi = lambda x, y: x * y
13
-print(multi(2,2))
+multiply = lambda x, y: x * y
+print(multiply(2,2))
14
```
15
16
## 📝 Instructions:
0 commit comments