Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert binary into a string in python?

I have been trying to convert my binary into a string in python. Haven't really figured out any solution at all. Anyone got an idea? Below is my code for how I convert the said strings into binary. I don't know if that is useful?

def binary_converter(string):
   for character in string:
        print(bin(ord(character))[2:].zfill(8))

binary_converter("Hello World!")
like image 245
Jack Benson Avatar asked Sep 17 '25 12:09

Jack Benson


1 Answers

The simplest way to convert it to string is str.decode(). For example, b"binary code".decode() will return the string.

like image 122
Roshan Avatar answered Sep 20 '25 02:09

Roshan