Added 'en' in the text (#33422)
This commit is contained in:
@ -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
|
||||
|
||||
 [Ejecutar código](https://repl.it/CL9U/0)
|
||||
|
||||
[Documentos oficiales](https://docs.python.org/3/library/functions.html#all)
|
||||
[Documentos oficiales](https://docs.python.org/3/library/functions.html#all)
|
||||
|
Reference in New Issue
Block a user