Skip to content

Instantly share code, notes, and snippets.

@y56
Created February 2, 2020 20:01
Show Gist options
  • Save y56/3b4818bb4f10161a1a3f66218b38c69f to your computer and use it in GitHub Desktop.
Save y56/3b4818bb4f10161a1a3f66218b38c69f to your computer and use it in GitHub Desktop.
Convert string to ASCII value python
https://stackoverflow.com/questions/8452961/convert-string-to-ascii-value-python
>>> s = 'hi'
>>> [ord(c) for c in s]
[104, 105]
>>> s = "hello world"
>>> ''.join(str(ord(c)) for c in s)
'10410110810811132119111114108100'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment