Which of the following statements are true? (Choose two.)
Which of the following statements are true? (Choose two.)
Python strings can be concatenated using the `+` operator, making it possible to join two or more strings together. Additionally, Python strings can be sliced like lists, meaning you can extract substrings using slicing notation (e.g., `string[start:end]`). However, Python strings are immutable, meaning they cannot be altered after they are created. Therefore, the statements that are true are that Python strings can be concatenated and can be sliced like lists.
Python strings cannot be changed — they are immutable.
B. Python strings can be concatenated C. Python strings can be sliced like lists
error BC is correct
B& D. correct