Bagaimana Menemukan Nilai ASCII oleh Python

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