Как найти значение ASCII по Python

N = int(input())
if 97 <= N <= 122:
    print(chr(N))
Excited Earthworm