python ASCII is used code example Example: python ascii >>> ord('a') 97 >>> chr(97) 'a' >>> chr(ord('a') + 3) 'd' >>>