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 7c657c2 commit 7f5cc84Copy full SHA for 7f5cc84
exercises/07-lambda-function-two/README.es.md
@@ -1,13 +1,12 @@
1
-# `07` Funciones Lambda
+# `07` Lambda Functions
2
3
-
4
-**:point_up: Recuerda:**
+### ☝ Recuerda:
5
6
Las funciones Lambda permiten una sintaxis corta para escribir expresiones de funciones.
7
8
```python
9
-multy = lambda x, y: x * y
10
-print(multy(2,2))
+multi = lambda x, y: x * y
+print(multi(2,2))
11
```
12
13
## 📝 Instrucciones:
@@ -18,4 +17,4 @@ print(multy(2,2))
18
17
19
## 💡 Pista:
20
21
-+ Busca en Google "remove last letter form string python" (puedes usar los corchetes).
++ Busca en Google "como eliminar el último caracter de un string python" (puedes usar los corchetes).
0 commit comments