Created
April 20, 2016 06:39
-
-
Save dudepare/7350d2d5740763fc0d77ee720d03d8fb to your computer and use it in GitHub Desktop.
Revisions
-
dudepare created this gist
Apr 20, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ def main(msg): convert = map(chr, msg) print("".join(list(convert))) if __name__ == '__main__': msg = [76, 101, 116, 116, 104, 101, 98, 101, 115, 116, 115, 116, 97, 114, 116,117, 112, 115, 97, 112, 112, 108, 121, 116, 111, 121, 111, 117, 0] main(msg)