Python如何统计大写字母的个数
时间: 2023-03-28 21:04:29 浏览: 327
Python可以使用isupper()函数判断一个字符是否为大写字母,然后遍历字符串中的每个字符,统计大写字母的个数。代码如下:
```
str = "Hello World"
count =
for char in str:
if char.isupper():
count += 1
print("大写字母个数为:", count)
```
输出结果为:大写字母个数为:2
相关问题
python统计大写字母个数
可以通过遍历字符串并使用 Python 的 isupper() 方法来统计大写字母的个数。以下是一个示例代码:
```python
string = "Hello World"
count = 0
for char in string:
if char.isupper():
count += 1
print("大写字母个数为:", count)
```
输出:
```
大写字母个数为: 2
```
在这个示例中,我们首先定义了一个字符串变量 string,并将其设置为 "Hello World"。然后我们定义一个计数器变量 count 并将其初始化为 0。接下来我们遍历字符串中的每个字符,并使用 isupper() 方法检查每个字符是否为大写字母。如果是,我们将计数器 count 的值加 1。最后,我们打印出计数器 count 的值,这就是大写字母的个数。
python编写函数用来统计大写字母和小写字母的个数编写程序通过函数调用实现输入一个包含大小写字母的字符串分别输出大写字母和小写字母的个数
好的,以下是 Python 代码实现:
```python
def count_upper_lower(string):
upper_count = 0
lower_count = 0
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
return upper_count, lower_count
input_str = input("请输入一个包含大小写字母的字符串:")
upper_num, lower_num = count_upper_lower(input_str)
print("大写字母个数:", upper_num)
print("小写字母个数:", lower_num)
```
解释一下:
- `count_upper_lower` 函数接收一个字符串作为参数,遍历字符串中的每个字符,判断其是否为大写字母或小写字母,统计个数并返回。
- `input_str` 变量接收用户输入的字符串。
- 调用 `count_upper_lower` 函数并将其返回值分别赋值给 `upper_num` 和 `lower_num` 变量。
- 输出结果。
希望能够帮到你!
阅读全文