Python Data Structures

123456789101112
Across
  1. 2. method used to access elements of a list.
  2. 5. method used to add elements to a list.
  3. 6. method used to count occurrences of an element in a list.
  4. 7. method used to reverse elements of a list.
  5. 8. method used to join elements of a list into a string.
  6. 10. method used to clear all elements from a list.
  7. 12. method used to split a string into a list.
Down
  1. 1. method used to find the index of the first occurrence of an element in a list.
  2. 2. method used to insert an element at a specified position in a list.
  3. 3. method used to remove elements from a list.
  4. 4. method used to remove the last element from a list.
  5. 9. method used to check if an element is in a list.
  6. 11. method used to sort elements of a list.