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