Byte Objects vs String in Python
In Python 2, both str and bytes are the same typeByte objects whereas in Python 3 Byte objects, defined in Python 3 are “sequence of bytes” and similar to “unicode” objects from Python 2. However, there are many differences in strings and Byte objects. Some of them are depicted below:
`
- Byte objects are sequence of Bytes, whereas Strings are sequence of characters.
- Byte objects are in machine readable form internally, Strings are only in human readable form.
- Since Byte objects are machine readable, they can be directly stored on the disk. Whereas, Strings need encoding before which they can be stored on disk.

There are methods to convert a byte object to String and String to byte objects.
PNG, JPEG, MP3, WAV, ASCII, UTF-8 etc are different forms of encodings. An encoding is a format to represent audio, images, text, etc in bytes. Converting Strings to byte objects is termed as encoding. This is necessary so that the text can be stored on disk using mapping using ASCII or UTF-8 encoding techniques.
This task is achieved using encode(). It take encoding technique as argument. Default technique is “UTF-8” technique.
# Python code to demonstate String encoding # initialising a String a = 'GeeksforGeeks' # initialising a byte object c = b'GeeksforGeeks' # using encode() to encode the String # encoded version of a is stored in d # using ASCII mapping d = a.encode('ASCII') # checking if a is converted to bytes or not if (d==c): print ("Encoding successful") else : print ("Encoding Unsuccessful") |
Output:
Encoding successful
Similarly, Decoding is process to convert a Byte object to String. It is implemented using decode() . A byte string can be decoded back into a character string, if you know which encoding was used to encode it. Encoding and Decoding are inverse processes.
# Python code to demonstate Byte Decoding # initialising a String a = 'GeeksforGeeks' # initialising a byte object c = b'GeeksforGeeks' # using decode() to decode the Byte object # decoded version of c is stored in d # using ASCII mapping d = c.decode('ASCII') # checking if c is converted to String or not if (d==a): print ("Decoding successful") else : print ("Decoding Unsuccessful") |
Output:
Decoding successful
This article is contributed by Manjeet Singh. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- How to generate byte code file in python ?
- Reading Python File-Like Objects from C | Python
- Python Classes and Objects
- Timer Objects in Python
- Barrier Objects in Python
- File Objects in Python
- Mutable vs Immutable Objects in Python
- Python | Counter Objects | elements()
- Python | Unit Test Objects Patching | Set-1
- Python | Unit Test Objects Patching | Set-2
- Python | Draw rectangular shape and extract objects using OpenCV
- Python Tkinter | Moving objects using Canvas.move() method
- Python | Check if given string can be formed by concatenating string elements of list
- String slicing in Python to check if a string can become empty by recursive deletion
- Python | Merge Tuple String List values to String


