Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
94170 |
徐盛熠 |
07大小写转换 |
Python3 |
Wrong Answer |
32 MS |
3736 KB |
93 |
2024-10-19 20:34:10 |
Tests(0/10):
Code:
c=input().split()
A=c[0]
A=ord(A)
if ord('a')<=A and ord('z')>=A :
print(chr(A-32))
Run Info:
------Input------
B
------Answer-----
b
------Your output-----