base64.b85decode() in Python Last Updated : 22 Apr, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report With the help of base64.b85decode() method, we can decode the binary string using base85 alphabets into normal form. Syntax : base64.b85decode(b_string) Return : Return the decoded string. Example #1 : In this example we can see that by using base64.b85decode() method, we are able to get the decoded string which can be in binary form by using this method. Python3 1=1 # import base64 from base64 import b85decode from base64 import b85encode s = b'GeeksForGeeks' s = b85encode(s) # Using base64.b85decode() method gfg = b85decode(s) print(gfg) Output : b'GeeksForGeeks' Example #2 : Python3 1=1 # import base64 from base64 import b85decode from base64 import b85encode s = b'Hello World' s = b85encode(s) # Using base64.b85decode() method gfg = b85decode(s) print(gfg) Output : b'Hello World' Comment More infoAdvertise with us Next Article base64.b85decode() in Python J jitender_1998 Follow Improve Article Tags : Python Python base64-module Practice Tags : python Similar Reads base64.a85decode() in Python With the help of base64.a85decode() method, we can decode the binary string using Ascii85 alphabets into normal form. Syntax : base64.a85decode(b_string) Return : Return the decoded string. Example #1 : In this example we can see that by using base64.a85decode() method, we are able to get the decode 1 min read base64.b85encode() in Python With the help of base64.b85encode() method, we can encode the string by using base85 alphabet into the binary form. Syntax : base64.b85encode(string) Return : Return the encoded string. Example #1 : In this example we can see that by using base64.b85encode() method, we are able to get the encoded st 1 min read base64.a85encode() in Python With the help of base64.a85encode() method, we can encode the string by using Ascii85 alphabet into the binary form. Syntax : base64.a85encode(string) Return : Return the encoded string. Example #1 : In this example we can see that by using base64.a85encode() method, we are able to get the encoded s 1 min read base64.b16decode() in Python With the help of base64.b16decode() method, we can decode the binary string using base16 alphabets into normal form. Syntax : base64.b16decode(b_string) Return : Return the decoded string. Example #1 : In this example we can see that by using base64.b16decode() method, we are able to get the decoded 1 min read base64.b64decode() in Python With the help of base64.b64decode() method, we can decode the binary string into normal form. Syntax : base64.b64decode(b_string) Return : Return the decoded string. Example #1 : In this example we can see that by using base64.b64decode() method, we are able to get the decoded string which can be in 1 min read Like