python

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