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 #930
print([5, 1] > [4, 2, 4, 5])
When used against lists, comparison operators compare the first element of each list. Here, as 5 is greater than 4 , True will be printed. (linuxtopia.org/online_books/programming_books/python_prog...)
Question difficulty: 🔵🔵🔵🔵🔵