Comment trouver la valeur ASCII par Python
N = int(input())
if 97 <= N <= 122:
print(chr(N))
Excited Earthworm
N = int(input())
if 97 <= N <= 122:
print(chr(N))