输入一个字符串 统计它包含的大写字母 小写字母 数字的个数
时间: 2024-10-24 14:02:53 浏览: 12
统计一组字符串中单词个数,大写字母小写字母数字的个数
当你输入一个字符串时,可以使用编程语言中的内置函数或循环结构来统计其中大写字母、小写字母以及数字的数量。以下是Python的一个简单示例:
```python
def count_chars(s):
uppercase = sum(1 for c in s if c.isupper()) # 使用isupper()检查是否为大写字母
lowercase = sum(1 for c in s if c.islower()) # 使用islower()检查是否为小写字母
digits = sum(1 for c in s if c.isdigit()) # 使用isdigit()检查是否为数字
return uppercase, lowercase, digits
input_string = "Hello World! 123"
uppercase, lowercase, digits = count_chars(input_string)
print(f"大写字母:{uppercase}, 小写字母:{lowercase}, 数字:{digits}")
阅读全文