Computer Science

How are string-literals represented and implemented in Python ?

Python Funda

79 Likes

Answer

A string-literal is represented as a sequence of characters surrounded by quotes (single, double or triple quotes). String-literals in Python are implemented using Unicode.

Answered By

39 Likes


Related Questions