When text is a string, which statement describes the value produced by text[1:3] and its effect on text?
Explanation
Slicing a string produces another string value, while the original remains unchanged because strings are immutable. A list of characters would require a separate conversion, and assigning the result to a name cannot mutate the source.