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 #93
It is not possible to sort a dictionary, only to get a representation of a dictionary that is sorted. Dictionaries are inherently orderless, but other types, such as lists and tuples, are not. So you need an ordered data type to represent sorted values, which will be a list—probably a list of tuples. (stackoverflow.com/questions/613183/how-do-i-sort-a-dictio...)
Dictionaries can be sorted.
— The Python Quiz (@thepythonquiz) July 8, 2020
True
False#python #python3 #pythonprogramming #learnpython
Question difficulty: 🔵🔵🔵🔵🔵