How are strings stored internally in python 3
Answers
Answered by
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