编写函数检测输入的一个字符是大写字母还是小写字母或不是26英文字母
时间: 2023-06-15 15:06:33 浏览: 213
下面是一个Python的实现代码:
```python
def check_letter(char):
if char.islower():
print(char, "是小写字母")
elif char.isupper():
print(char, "是大写字母")
else:
print(char, "不是26英文字母")
```
其中,islower()函数用于判断字符是否为小写字母,isupper()函数用于判断字符是否为大写字母。如果都不是,则说明不是26英文字母。可以将这个函数放在程序中任何需要检测输入字符的地方调用。
阅读全文