Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python - How To Convert String to ASCII Value

#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 by www.thecodeteacher.com #
 
PREVIOUS NEXT
Tagged: #Python #How #To #Convert #String #ASCII #Value
ADD COMMENT
Topic
Name
6+4 =