Skip to content

Commit 7877337

Browse files
authored
Update README.md
1 parent 0de3fbf commit 7877337

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

exercises/07-lambda-function-two/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
33
---
44

5-
# `07` Lambda functions
5+
# `07` Lambda Functions
66

7-
**:point_up: Remember:**
7+
### Remember:
88

99
Lambda functions allows a short syntax for writing function expressions.
1010

1111
```python
12-
multy = lambda x, y: x * y
13-
print(multy(2,2))
12+
multi = lambda x, y: x * y
13+
print(multi(2,2))
1414
```
1515

1616
## 📝 Instructions:
1717

18-
1. Create a lambda function called `rapid` it will take one string parameter.
18+
1. Create a lambda function called `rapid`, which will take one string parameter.
1919

2020
2. Return the same string with the last letter removed.
2121

22-
## 💡 Hint
22+
## 💡 Hint:
2323

24-
+ Google how to "remove last letter form string python" (you can use the square brackets).
24+
+ Google "how to remove last letter from string python" (you can use the square brackets).

0 commit comments

Comments
 (0)