Game Preview

Lists in Python - Activity#2

  •  English    10     Public
    Identify the concept of Lists to represent and manipulate data structures in a Python program.
  •   Study   Slideshow
  • What is the index number for "Spain" in the list?
    2
  •  10
  • What is the output of the code segment above?
    ["honda", "suzuki", "yamaha"]
  •  10
  • 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 ]
    numbers.sort()
  •  10
  • What is the output of the following code?
    [2]
  •  10
  • What is the output of the following code segment?
    [4, 2, 1, 3, 5]
  •  10