This Python string method converts all characters to uppercase.
What is str.upper()?
This Python method converts all letters in a string to lowercase.
What is str.lower()?
This keyword is used to check if a substring exists within another string.
What is in?
his symbol is used to concatenate two strings in Python.
What is +?
This Python slicing method can reverse a string.
What is s[::-1]?
This method returns the number of characters in a string.
What is len()?
What Is the string the same when read forwards and backwards, ignoring spaces, punctuation, and capitalization
What is a palindrome?
This function checks if a string starts with a specific substring.
What is str.startswith()?
This method removes whitespace from the beginning and end of a string.
What is str.strip()?
This string method returns the index of the first occurrence of a substring.
What is str.find()?