fork download
  1. binary = '01101000 01100101 01101100 01101100 01101111 00100000 01110111 01101111 01110010 01101100 01100100'
  2. binary = binary.replace(" ", "")
  3. len = len(binary) / 8
  4. x = 0
  5. while (len > 0):
  6. print(chr(int(binary[x:x+8], 2)), end='')
  7. x = x + 8
  8. len = len - 1
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
hello world