统计字符串中大写字母个数
时间: 2024-06-13 18:06:37 浏览: 132
统计字符串中字母和数字个数
以下是两种统计字符串中大写字母个数的例子:
1.使用isupper()函数统计大写字母个数
```python
s = "Helle, This is A test textfile.123456, tannk you!!"
count = 0
for i in s:
if i.isupper():
count += 1
print("大写字母个数:", count) # 输出:3
```
2.使用ASCII码判断字符是否为大写字母
```python
s = "Helle, This is A test textfile.123456, tannk you!!"
count = 0
for i in s:
if ord(i) >= 65 and ord(i) <= 90:
count += 1
print("大写字母个数:", count) # 输出:3
```
阅读全文