Strings 1
Strings 2
100

This Python string method converts all characters to uppercase.

What is str.upper()?

100

This Python method converts all letters in a string to lowercase.

What is str.lower()?

200

This keyword is used to check if a substring exists within another string.

What is in?

200

his symbol is used to concatenate two strings in Python.

What is +?

300

This Python slicing method can reverse a string.

What is s[::-1]?

300

This method returns the number of characters in a string.

What is len()?

400

What Is the string the same when read forwards and backwards, ignoring spaces, punctuation, and capitalization

What is a palindrome?

400

This function checks if a string starts with a specific substring.

What is str.startswith()?

500

This method removes whitespace from the beginning and end of a string.

What is str.strip()?

500

This string method returns the index of the first occurrence of a substring.

What is str.find()?

M
e
n
u