Python Program to Find ASCII Value of Character

By @python-dev3/22/2020python-dev
# Program to find the ASCII value of the given character

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
2

comments