一个长度为3的字符串,判断字符串是否是包含小写字母和大写字母,
时间: 2024-10-26 22:01:12 浏览: 8
C语言 字符串首字母转换成大写简单实例
你可以通过遍历字符串并检查其中每个字符是否同时包含大写字母(ASCII值范围通常是65到90)和小写字母(ASCII值范围通常是97到122)。下面是一个简单的Python示例:
```python
def has_upper_and_lower(s):
has_upper = False
has_lower = False
for char in s:
if 'A' <= char <= 'Z':
has_upper = True
elif 'a' <= char <= 'z':
has_lower = True
# 如果同时找到大写字母和小写字母,就返回True
if has_upper and has_lower:
return True
# 没有同时找到,返回False
return has_upper or has_lower
# 测试字符串
str_example = "aBc"
if has_upper_and_lower(str_example):
print(f"{str_example} 是包含大小写字母的")
else:
print(f"{str_example} 不包含大小写字母")
```
阅读全文