Which of the following is a correct way to define a string in Python?
What does it mean when we say Python strings are immutable?
Which type of quotes allows you to write a Python string that spans multiple lines?
What is the output of the following code: 'Hello' + ' ' + 'World'?
Which function returns the length of a string in Python? For example, len('Python').
If my_string = 'Code', what will my_string[0] return?
Given the string s = 'Python', what is the result of s[1:4]?
Which method would you use to convert the string 'python' to 'PYTHON'?
If s = ' hello ', which method removes spaces from both ends and returns 'hello'?
How would you insert the value of a variable name into a string using an f-string? Example: name = 'Alex'.