The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #897
print(any([[], [], []]))
any() returns True if any of the elements of a given iterable is True . The list given to any() in the example above only contains empty lists, which individually evaluate to False . any() will return False . (programiz.com/python-programming/methods/built-in/any)
Question difficulty: 🔵🔵🔵🔵🔵
Similar questions: