In this section, you’ll learn about bytes objects. The bytes object is one of the core built-in types for manipulating binary data. A bytes object is an immutable sequence of single byte values. Each element in a bytes object is a small integer in the range of 0 to 255. Here’s what you’ll see in this section:
- Defining a literal
bytesobject - Defining a
bytesobject with the built-inbytes()function - Operations on
bytesobjects bytearrayobjects- Conclusion and course review
