Computer Science, asked by nehanaik8149, 10 months ago

How are strings stored internally in python 3

Answers

Answered by nishant999nishu55
6

Answer:

How are strings stored internally in Python 3? They are stored internally as a Unicode sequence with a know codec. That means that they are a sequence of bytes where each character might be one, two, three or four bytes depending on which Unicode page this characters are from.

Similar questions