Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
34400 真·随机 [acwing]首字母大写 Python3 通过 19 MS 3644 KB 129 2024-01-07 11:04:40

Tests(5/5):


a=input() if ord(a[0])>=97 and ord(a[0])<=122: print(chr(ord(a[0])-32),end='') else: print(a[0],end='') print(a[1:])


测评信息: