xxxxxxxxxx
# ASCII stands for American Standard Code for Information Interchange.
# It is a numeric value given to different characters and symbols,
# for computers to store and manipulate.
# Use - ord() function to find this value.
print(ord("A"))
# output: 65
# Keep in mind that capital and simple of the same letter have different values.
print(ord("a"))
# output: 97
xxxxxxxxxx
c='p'
x=ord(c)
#it will give you the ASCII value stored in x
chr(x)
#it will return back the character
xxxxxxxxxx
# Program to find the ASCII value of the given character
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))