Complex Datatypes
Lists in python are not mutable
Lists in python can be created using curly brackets
You can modify a tuple by converting the tuple into a list, and again convert the list back into tuple?
A dictionary can consist of 2 items with the same key?
Tuples in python are _____; and lists are ______
Which of the following datatypes does not contains duplicate elements
List indices in python always starts from ______
In list sort() method, the reverse parameter is mandatory
Which of the following data types stores data in key-value format
list.sort(reverse=’True’) will sort the list in _______ order
Which of the following method you would use if you wanted to add a new key-value pair to your already existing dictionary?
Which of the following method is used to add elements at the end of a list?