Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96320 周楚航 字符转换 Python3 Accepted 35 MS 3740 KB 111 2024-11-03 20:14:10

Tests(1/1):


Code:

a=input() b=ord(a) if b >= 65 and b <= 96: x=b+32 q=chr(x) print(q) else: print(a)