BC9 字符转ASCII码

思路:

step1:输入字符;
step2:使用ord()函数,将输入字符转换为ASCII码,并输出;

代码如下:

n = input()
print(ord(n))