True or False: The function of the reverse() method is to sort the list (lowest to highest for numbers and alphabetical order for strings).
False
10
True or False: The function of the sort() method in lists is to reverse the order of the elements inside a list.
False
10
nameList = ["John", "Harry", "Jesse", "John", "Marry", "Larry"] Using the slicing concept, write the line of code that would display Harry and Jesse only.
print(nameList[1:3])
10
What is the output of the following code segment?
[8, 12, 16]
10
The sort() method in lists reorders the values by default in _________________order. (ascending/descending)
ascending
10
Write the line of code that can sort this list. numbers = [1, 4, 2, 6, 3 ]