Open In App

codecs.decode() in Python

Last Updated : 26 Mar, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of codecs.decode() method, we can decode the binary string into normal form by using codecs.decode() method.
Syntax : codecs.decode(b_string) Return : Return the decoded string.
Example #1 : In this example we can see that by using codecs.decode() method, we are able to get the decoded string which can be in binary form by using this method. Python3 1=1
# import codecs
import codecs

s = b'GeeksForGeeks'
# Using codecs.decode() method
gfg = codecs.decode(s)

print(gfg)
Output :
GeeksForGeeks
Example #2 : Python3 1=1
# import codecs
import codecs

s = b'I love python.'
# Using codecs.decode() method
gfg = codecs.decode(s)

print(gfg)
Output :
I love python.

Next Article
Article Tags :
Practice Tags :

Similar Reads