“Alle und alles in Python3” Code-Antworten

Alle und alles in Python3


>>> multiples_of_6 = (not (i % 6) for i in range(1, 10))
>>> any(multiples_of_6)
True
>>> list(multiples_of_6)
[False, False, False]

Frantic Falcon

Alle und alles in Python3

# Here all the iterables are True so all 
# will return True and the same will be printed 
print (all([True, True, True, True])) 
  
# Here the method will short-circuit at the  
# first item (False) and will return False. 
print (all([False, True, True, False])) 
  
# This statement will return False, as no 
# True is found in the iterables 
print (all([False, False, False])) 
Impossible Iguana

Ähnliche Antworten wie “Alle und alles in Python3”

Fragen ähnlich wie “Alle und alles in Python3”

Weitere verwandte Antworten zu “Alle und alles in Python3” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen