How to replace each letter in a string by its ordinal value in Python

1 Answer

0 votes
s = "Python programming"

s = [ord(ch) for ch in s]

print(s)




'''
run:

[80, 121, 116, 104, 111, 110, 32, 112, 114, 111, 103, 114, 97, 109, 109, 105, 110, 103]

'''

 



answered Jan 30, 2024 by avibootz

Related questions

...