Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python Program to Find ASCII Value of Character

# Program to find the ASCII value of the given character

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #Python #Program #Find #ASCII #Value #Character
ADD COMMENT
Topic
Name
8+2 =