def change(b): b=ord(b)-32 print(chr(b)) while True: a=input('请输入一个小写字母:') print('自动转换为大写字母:') change(a)
#ord()函数作用是将字符转换成ascii,chr()作用是将ascii转换为字符