Skip to content

Instantly share code, notes, and snippets.

@sblendorio
Last active September 6, 2018 13:44
Show Gist options
  • Save sblendorio/2d28494392a74d3614a4e802a0fdce11 to your computer and use it in GitHub Desktop.
Save sblendorio/2d28494392a74d3614a4e802a0fdce11 to your computer and use it in GitHub Desktop.
Convert ASCII to String in Python
L = [
65,
66,
67
]
''.join(chr(i) for i in L)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment