KnowledgeBoat Logo

Computer Science

How are string-literals represented and implemented in Python ?

Python Funda

63 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

32 Likes


Related Questions