1# The ord() function returns an integer representing the Unicode character.
2res = ord('A')
3print(res)
4# output 65
1'''note the integer representation of unicode character
2of capital letters and small letters are completely different'''
3
4# example
5print( ord('A') ) # output 65
6print( ord('a') ) # output 97