KnowledgeBoat Logo

Computer Science

How are string-literals represented and implemented in Python ?

Python Funda

62 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

31 Likes


Related Questions