The Wayback Machine - https://web.archive.org/web/20221022095544/https://www.geeksforgeeks.org/codecs-encode-in-python/
Skip to content
Related Articles

Related Articles

codecs.encode() in Python

View Discussion
Improve Article
Save Article
  • Last Updated : 26 Mar, 2020
View Discussion
Improve Article
Save Article

With the help of codecs.encode() method, we can encode the string into the binary form .

Syntax : codecs.encode(string)

Return : Return the encoded string.

Example #1 :
In this example we can see that by using codecs.encode() method, we are able to get the encoded string which can be in binary form by using this method.




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

Output :

b’GeeksForGeeks’

Example #2 :




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

Output :

b’I love python.’

My Personal Notes arrow_drop_up
Recommended Articles
Page :

Start Your Coding Journey Now!