Across
- 6. The third element in slicing used for skipping characters or reversing
- 7. Used to store data values in memory
- 9. Repeats a block of code for each item in a sequence
- 12. A sequence of characters enclosed in quotes
- 13. Keyword used to test multiple conditions after an initial if
- 14. Operator used to check equality
- 15. Logical operator meaning at least one condition is true
- 16. String method to replace part of a string with another
- 17. Python module that generates pseudo-random values
- 18. Operator that joins multiple strings
- 20. A smaller part of a larger string
- 22. A logical value that evaluates to true
- 23. Gets the character at a specific integer position in a string
Down
- 1. Data type used to store whole numbers
- 2. Function that converts text to uppercase
- 3. Boolean value that means “not true”
- 4. Statement used to repeatedly execute a block of code while a condition is true
- 5. Condition-checking structure that can include else
- 6. Extracting a portion of a string using [start:end]
- 8. Logical operator meaning both conditions must be true
- 10. What slicing with [::-1] produces
- 11. Symbol used for single-line comments in Python
- 12. Function that removes leading and trailing spaces
- 19. Returns the number of characters in a string
- 21. Method that capitalizes the first letter of each word
