Gives a string representing one Unicode character, return an integer represeting the unicode code point of that character
Example:
ord('a') # Returns integer 97
chr(97) # Returns character 'a'
Last updated 4 years ago