Chapter 8 Key Terms

12345678910111213141516171819202122232425
Across
  1. 3. Method used to check if a string ends with substring
  2. 6. An error when attempting to access an index outside the valid range of a sequence.
  3. 8. function that returns a string copy with leading and trailing whitespace characters removed.
  4. 9. Method used to separate a string into a list of substrings based on a specified delimiter.
  5. 13. Operator*s Method used to repeat a string or a list a certain number of times.
  6. 15. Methos that checks if characters in a string are digits
  7. 17. Way to extract a determined string or list form a sequence
  8. 18. Method or replaces all occurrences of a substring in a string with another substring.
  9. 19. Methos that checks if characters in a string are uppercase letters
  10. 21. Methos that checks if characters in a string are either a number or letter
  11. 22. Given a character `char`, this function returns a string with all leading occurrences of that character removed
  12. 24. An objects, such as strings or tuples, whose values cannot be changed after creation.
  13. 25. Method searches for a substring within a string and returns the index of the first occurrence.
Down
  1. 1. Combining two or more sequences for strings or list into a single, larger sequence.
  2. 2. operation used to check if a value is not in the sequence
  3. 4. Method used to check if a string starts with substring
  4. 5. alphabetic characters to uppercase, leaving non-alphabetic characters and uppercase characters unchanged.
  5. 6. Accessing elements in data structures for strings lists or tuples by specifying their position
  6. 7. .Returns a trimmed string with leading spaces, newlines, and tabs removed.
  7. 8. This method returns a string copy with all occurrences of the specified character `char` removed from both the beginning and the end of the string.
  8. 10. Methos to convert all characters in a string to lowercase
  9. 11. Given a character `char`, the method returns a string with all trailing instances of that character removed from the end of the string.
  10. 12. Operation used to check if a value in in the sequence
  11. 14. Methos that checks if characters in a string are whitespace characters
  12. 16. Methos that checks if characters in a string are letters of the alphabetic
  13. 20. Methos that checks if characters in a string are lowercase letters
  14. 23. This function givs a string copy with trailing spaces, newlines, and tabs removed from the end of the string.