diff --git a/guide/spanish/python/all-iterable/index.md b/guide/spanish/python/all-iterable/index.md index b833b2599b..26831c767e 100644 --- a/guide/spanish/python/all-iterable/index.md +++ b/guide/spanish/python/all-iterable/index.md @@ -2,7 +2,7 @@ title: Python All Iterable localeTitle: Python Todo Iterable --- -`all()` es una función incorporada en Python 3 (y Python 2 desde la versión 2.5), para verificar si todos los elementos de un [_iterable_](https://docs.python.org/3/glossary.html#term-iterable) son `True` . Se necesita un argumento, `iterable` . +`all()` es una función incorporada en Python 3 (y en Python 2 desde la versión 2.5), para verificar si todos los elementos de un [_iterable_](https://docs.python.org/3/glossary.html#term-iterable) son `True` . Se necesita un argumento, `iterable` . ## Argumento @@ -40,4 +40,4 @@ print(all([])) #=> True # Because an empty iterable has no non-truthy elements ![:rocket:](//forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":cohete:") [Ejecutar código](https://repl.it/CL9U/0) -[Documentos oficiales](https://docs.python.org/3/library/functions.html#all) \ No newline at end of file +[Documentos oficiales](https://docs.python.org/3/library/functions.html#all)