Python String and List Methods

123456789101112131415161718
Across
  1. 2. Adds an element to the end of a list
  2. 4. Converts all characters in a String to uppercase
  3. 8. Converts all characters in a String to lowercase
  4. 9. Will arrange the values stored in a list in ascending order
  5. 11. Will change the order of the contents of the list to reverse the items
  6. 13. Returns a list of the words found in the String, separated at each space
  7. 15. converts a list into a String value
  8. 16. Returns the lowest index where the substring is found in the String
  9. 17. Returns a copy of the String with all of the leading and ending white-space removed
Down
  1. 1. Switches the case of each letter in a String
  2. 3. Returns True when all characters are uppercase
  3. 5. Will delete the item from a list at the parameter index
  4. 6. Converts a String into a list of characters
  5. 7. Returns the number of times parameter value is found in the list
  6. 10. Returns True when all characters are lowercase
  7. 12. Will add multiple values to the end of a list
  8. 14. Returns the number of items in a list or the number of characters in a String
  9. 18. Will return True if the item tested is in the list