Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python all

#all() func in python is using to return true if all items is true and false if one item is False.
myList=[True, True, True]
print(myList)
myList2=[True, False, True]
print(myList)
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
4+5 =