问题如下
代码如下
c=input()
if c>='a' and c<='z':
y=chr(ord(c)-32)
print(y)
else:
print(c)
判断机一直判定错误找不到原因
问题如下
c=input()
if c>='a' and c<='z':
y=chr(ord(c)-32)
print(y)
else:
print(c)
判断机一直判定错误找不到原因
我没有实验,我感觉你应该先把输入的字符转换成ASCII吗,然后和小写字母的ASCII码进行比较,这个思路才是对的。努力吧同学!