📜  python程序以小写形式打印ASCII字符 - Python代码示例

📅  最后修改于: 2022-03-11 14:46:25.680000             🧑  作者: Mango

代码示例1
# 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))