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