How do the literals `'blue'` and `"blue"` differ when evaluated?
Explanation
Both quote styles delimit a string literal and produce the same `str` value here. Python does not have a separate character-literal type selected by single quotes, so the claimed type difference is false.