Computer Science, asked by bharat000, 5 months ago

3. How are str type strings different from
Unicode strings ?


plz don't give answer from Google.
becoz agar google se nikalna hota toh hum hi na nikal lete.​​

Answers

Answered by Anonymous
8

Answer:

In Python 2, two types could be used to represent strings. One of them,was a “byte string” type; it represented a sequence of bytes in some particular text encoding, and defaulted to ASCII. The other, unicode , was (as the name implies) a Unicode string type. in Python 3, there is one and only one string type.

Similar questions