4

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!")
asked Jul 14, 2019 at 8:30
2
  • use b'my binary data'.decode() Commented Jul 14, 2019 at 8:31
  • Possible duplicate of Convert bytes to a string? Commented Jul 14, 2019 at 8:49

2 Answers 2

3

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

answered Jul 14, 2019 at 8:34
Sign up to request clarification or add additional context in comments.

Comments

1

The inverse of

bin(ord(character))[2:].zfill(8)

is

chr(int(binary_str, 2))

where binary_str is, for example, 01001000 for the letter H.

What remains is just wrapping this in a loop. I'll leave this as an exercise for the reader.

answered Jul 14, 2019 at 8:34

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.