python判断字符串是否包含英文大写字母和数字
时间: 2023-05-31 08:06:50 浏览: 100
Python实验 字符串.zip
5星 · 资源好评率100%
可以使用Python的字符串方法isupper()和isdigit()来判断字符串是否包含英文大写字母和数字。
示例代码:
```python
s = "Hello123"
has_upper = False
has_digit = False
for char in s:
if char.isupper():
has_upper = True
elif char.isdigit():
has_digit = True
if has_upper and has_digit:
print("字符串包含英文大写字母和数字")
else:
print("字符串不包含英文大写字母和数字")
```
输出:
```
字符串包含英文大写字母和数字
```
阅读全文