fork download
  1. binary = '0111011101111000'
  2. len = len(binary) / 8
  3. x = 0
  4. while (len > 0):
  5. print(chr(int(binary[x:x+8], 2)))
  6. x = x + 8
  7. len = len - 1
Success #stdin #stdout 0.01s 8968KB
stdin
Standard input is empty
stdout
w
x