Saturday, July 4, 2026
HomeLanguagescodecs.decode() in Python

codecs.decode() in Python

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.




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


Output :

GeeksForGeeks

Example #2 :




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


Output :

I love python.

RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS