Created
October 29, 2015 14:28
-
-
Save nvcleemp/471201ddc3564d929aa4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
bytes = [] | |
for l in sys.stdin: | |
for part in l.strip().split(): | |
bytes.append(chr(int(part))) | |
print ''.join(bytes), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment