#!/usr/bin/env/python
import sys
sentence = ""
for word in sys.argv[1:]:
sentence += chr( int( word, 2 ) )
print sentence
Subscribe to:
Post Comments (Atom)
#!/usr/bin/env/python
import sys
sentence = ""
for word in sys.argv[1:]:
sentence += chr( int( word, 2 ) )
print sentence
0 comments:
Post a Comment