Skip to content

Commit 7f5cc84

Browse files
authored
Update README.es.md
1 parent 7c657c2 commit 7f5cc84

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
# `07` Funciones Lambda
1+
# `07` Lambda Functions
22

3-
4-
**:point_up: Recuerda:**
3+
### ☝ Recuerda:
54

65
Las funciones Lambda permiten una sintaxis corta para escribir expresiones de funciones.
76

87
```python
9-
multy = lambda x, y: x * y
10-
print(multy(2,2))
8+
multi = lambda x, y: x * y
9+
print(multi(2,2))
1110
```
1211

1312
## 📝 Instrucciones:
@@ -18,4 +17,4 @@ print(multy(2,2))
1817

1918
## 💡 Pista:
2019

21-
+ Busca en Google "remove last letter form string python" (puedes usar los corchetes).
20+
+ Busca en Google "como eliminar el último caracter de un string python" (puedes usar los corchetes).

0 commit comments

Comments
 (0)