Converting Letter To Ascii

[Solved] Converting Letter To Ascii | Vb - Code Explorer | yomemimo.com
Question : convert to ascii

Answered by : dixl-owe

#python 3.x
text = input("enter a string to convert into ascii values:")
ascii_values = []
for character in text: ascii_values.append(ord(character))
print(ascii_values)

Source : https://www.delftstack.com/howto/python/convert-string-to-ascii-python/ | Last Update : Sun, 02 Jan 22

Answers related to converting letter to ascii

Code Explorer Popular Question For Vb