Programme Python pour imprimer les caractères ASCII en minuscules
# input a number
s=int(input('Enter an ASCII value: '))
# getting its ascii character
n=chr(s)
# printing the result
print('ASCII of value {} is {}.'.format(s,n))
Naughty Newt