Open In App

base64.decodebytes(s) in Python

With the help of base64.decodebytes(s) method, we can decode the binary string with the help of base64 data into normal form.

Syntax : base64.decodebytes(b_string)



Return : Return the decoded string.

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




# import base64
from base64 import encodebytes
from base64 import decodebytes
  
s = b'GeeksForGeeks'
s = encodebytes(s)
# Using base64.decodebytes(s) method
gfg = decodebytes(s)
  
print(gfg)

Output :



b’GeeksForGeeks’

Example #2 :




# import base64
from base64 import encodebytes
from base64 import decodebytes
  
s = b'Hello World'
s = encodebytes(s)
# Using base64.decodebytes(s) method
gfg = decodebytes(s)
  
print(gfg)

Output :

b’Hello World’

Article Tags :