Jak znaleźć wartość ASCII według Pythona

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