We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
7
139
+1 for having a good argument and quotes from the python docs. Also unicode_string.encode(encoding) matches nicely with bytearray.decode(encoding) when you want your string back.
@EugeneHomyakov This has nothing to do with bytearray except that the docs for bytes don't give details, they just say "this is an immutable version of bytearray" so I have to quote from there.
Just a cautionary note from Python in a Nutshell about bytes: Avoid using the bytes type as a function with an integer argument. In v2 this returns the integer converted to a (byte)string because bytes is an alias for str, while in v3 it returns a bytestring containing the given number of null characters. So, for example, instead of the v3 expression bytes(6), use the equivalent b'\x00'*6, which seamlessly works the same way in each version.
Just a note, that if you are trying to convert binary data to a string, you'll most likely need to use something like byte_string.decode('latin-1') as utf-8 doesn't cover the entire range 0x00 to 0xFF (0-255), check out the python docs for more info.
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
complete the sentence: my question is about...
use tags that describe things or concepts that are essential, not incidental to your question
unicode_string.encode(encoding)matches nicely withbytearray.decode(encoding)when you want your string back.bytearrayis used when you need a mutable object. You don't need it for simplestr↔bytesconversions.bytearrayexcept that the docs forbytesdon't give details, they just say "this is an immutable version ofbytearray" so I have to quote from there.bytes: Avoid using the bytes type as a function with an integer argument. In v2 this returns the integer converted to a (byte)string because bytes is an alias for str, while in v3 it returns a bytestring containing the given number of null characters. So, for example, instead of the v3 expression bytes(6), use the equivalent b'\x00'*6, which seamlessly works the same way in each version.byte_string.decode('latin-1')asutf-8doesn't cover the entire range 0x00 to 0xFF (0-255), check out the python docs for more info.