输入一个字符串,分别计算其中小写字母,大写字母,数字,其他字符的个数
时间: 2024-10-16 22:07:47 浏览: 30
C++统计中英文大小写字母、数字、空格及其他字符个数的方法
5星 · 资源好评率100%
当输入一个字符串时,可以使用编程语言中的内置函数或正则表达式来统计其中的小写字母、大写字母、数字以及其他字符的数量。下面是一个简单的Python示例:
```python
def count_chars(s):
lower_count = sum(1 for c in s if c.islower())
upper_count = sum(1 for c in s if c.isupper())
digit_count = sum(1 for c in s if c.isdigit())
other_count = len(s) - (lower_count + upper_count + digit_count)
return lower_count, upper_count, digit_count, other_count
input_string = "Hello World! 123"
result = count_chars(input_string)
print(f"小写字母: {result[0]}, 大写字母: {result[1]}, 数字: {result[2]}, 其他字符: {result[3]}")
阅读全文