#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)