Python -Programm zum Drucken von ASCII -Zeichen in Kleinbuchstaben
# 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