Skip to content

Instantly share code, notes, and snippets.

@sunghun7511
Created November 3, 2018 13:56
Show Gist options
  • Save sunghun7511/8e9cd9be703017961d0541f3ef50eaf9 to your computer and use it in GitHub Desktop.
Save sunghun7511/8e9cd9be703017961d0541f3ef50eaf9 to your computer and use it in GitHub Desktop.
chrs = "#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"
def get(ind):
output = ""
for i in ind:
output += chrs[i]
return output
print(get([36, 76, 60, 17, 69, 66, 62, 65, 60, 74, 62, 72, 66, 60, 54, 76, 82, 47, 60, 33, 62, 54, 59, 59, 53]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment