Skip to content

Commit adf728a

Browse files
authored
Update README.es.md
1 parent 142bbf9 commit adf728a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

exercises/39-class-that-iterates/README.es.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
## 📝 Instrucciones:
44

5-
1. Define una clase con una función generadora que pueda iterar los números que son divisibles por 7 en un rango dado de `0` a `n`.
5+
1. Define una clase con una *generator function* que pueda iterar los números que son divisibles por 7 en un rango dado de `0` a `n`.
66

77
## 💡 Pista:
88

9-
+ Lee sobre funciones generadoras y `yield`: https://sentry.io/answers/python-yield-keyword/
9+
+ Lee sobre *generator functions* y `yield`: https://sentry.io/answers/python-yield-keyword/
10+
11+
+ Debes usar `yield` en tu solución.

0 commit comments

Comments
 (0)