Each character is associated with an ASCII value which is a unique number. It is obtained by ord() function.
>>> ord('A')
65
>>> ord('+')
43
>>> ord(' ')
Each character is associated with an ASCII value which is a unique number. It is obtained by ord() function.
>>> ord('A')
65
>>> ord('+')
43
>>> ord(' ')