Greg
0
Q:

python ascii

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>
11
c='p'
x=ord(c)
#it will give you the ASCII value stored in x
chr(x)
#it will return back the character
9
asciiValue=ord(stringCharacter)
#example
asciiValue=ord('A') 
#in this example asciiValue equals 64
7

New to Communities?

Join the community