Python Chapter 8 Review Crossword

1234567891011121314151617
Across
  1. 3. The function name of the method that returns the length of a string.
  2. 5. The name of the method that returns a copy of the string with all letters converted to lowercase.
  3. 8. To reference a specific index you will need to use _ brackets.
  4. 9. This symbol is known as the repetition operator that joins the same string multiple times.
  5. 10. Another word for traverse through something, for example, you can use a loop to through all characters in a string sequentially.
  6. 11. The name of the method that returns a Boolean value depending on if all characters in the string is alphabetic and if there is at least one character.
  7. 12. The name of the method that returns a Boolean value depending on if all the characters in the string whitespace is only.
  8. 16. Operator _ allows the programmer to use the built-in operators for user-defined methods.
Down
  1. 1. Another word for joining two or more strings together; this is achieved with the + symbol.
  2. 2. The name of the method that returns a copy of the string with the first letter capitalized in each word.
  3. 4. This operator tests whether a string is not contained in another string.
  4. 6. The name of the method that returns a string right justified in a field of the given width.
  5. 7. The operator that returns a portion of the string.
  6. 8. The way of removing unwanted whitespace characters at the front and end of a string.
  7. 13. The function name to create an empty string object.
  8. 14. Every index naturally starts at _.
  9. 15. If multiple objects have the same exact contents, then Python would then have them share the same _ number.
  10. 17. A string object is _, once it is created, its contents cannot be changed.