Open In App

base64.b16encode() in Python

Last Updated : 26 Mar, 2020
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
With the help of base64.b16encode() method, we can encode the string by using base16 alphabet into the binary form.
Syntax : base64.b16encode(string) Return : Return the encoded string.
Example #1 : In this example we can see that by using base64.b16encode() method, we are able to get the encoded string which can be in binary form by using this method. Python3 1=1
# import base64
from base64 import b16encode

s = b'GeeksForGeeks'
# Using base64.b16encode() method
gfg = b16encode(s)

print(gfg)
Output :
b'4765656B73466F724765656B73'
Example #2 : Python3 1=1
# import base64
from base64 import b16encode

s = b'I love python'
# Using base64.b16encode() method
gfg = b16encode(s)

print(gfg)
Output :
b'49206C6F766520707974686F6E'

Article Tags :
Practice Tags :

Similar Reads