Skip to content

Instantly share code, notes, and snippets.

@nvcleemp
Created October 29, 2015 14:28
Show Gist options
  • Save nvcleemp/471201ddc3564d929aa4 to your computer and use it in GitHub Desktop.
Save nvcleemp/471201ddc3564d929aa4 to your computer and use it in GitHub Desktop.
#!/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