How would you convert a string to ASCII values?
For example, \"hi\" would return 104105.
I can individually do ord(\'h\') and ord(\'i\'), but it\'s going to
If you are using python 3 or above,
>>> list(bytes(b'test')) [116, 101, 115, 116]