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 #19
Objects in a list can be of different types. Also, the same object can be in a list twice. However, list are ordered so two lists with different orders are not deemed equal. (docs.python.org/3/tutorial/datastructures.html)
Which one is true?
— The Python Quiz (@thepythonquiz) May 6, 2020
These represent the same list:
['a', 'b', 'c']
['c', 'a', 'b']
All elements in a list must be of the same type.
A given object may appear in a list more than once.#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅