fork download
  1. binary = '0110100001100101011011000110110001101111001000000111011101101111011100100110110001100100'
  2. len = len(binary) / 8
  3. x = 0
  4. while (len > 0):
  5. print(chr(int(binary[x:x+8], 2)), sep='')
  6. x = x + 8
  7. len = len - 1
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
h
e
l
l
o
 
w
o
r
l
d