Computer Science
Related Questions
Running the code sorted(mydictionary, reverse = True) on a dictionary named mydictionary will return results sorted in what order?
- Ascending order (A-Z), by key
- Ascending order (A-Z), by value
- Descending order (Z-A), by key
- Descending order (Z-A), by value
Fill in the blanks:
The keys of a dictionary must be of _________ types.
Fill in the blanks:
To delete an element using a key, _________ is used.
Fill in the blanks:
To get all the keys of a dictionary, _________ method is used.