Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

truc python

x = [True, True, False]
if any(x):
    print("Au moins un True")
if all(x):
    print("Aucun False")
if any(x) and not all(x):
 
PREVIOUS NEXT
Tagged: #truc #python
ADD COMMENT
Topic
Name
6+4 =