@droidboy
Python
>>> s = "01000100 01110101 00100000 01100010 01101001 01110011 01110100 00100000 01110100 01101111 01101100 01101100"
>>> ''.join([chr(int(n, 2)) for n in s.split(' ')])
Really neat!
@droidboy
Python
>>> s = "01000100 01110101 00100000 01100010 01101001 01110011 01110100 00100000 01110100 01101111 01101100 01101100"
>>> ''.join([chr(int(n, 2)) for n in s.split(' ')])
Really neat!