用python编写出 计算传入的字符串中数字和空格的个数
时间: 2024-04-30 20:24:03 浏览: 99
Python_字符串处理.txt
可以使用Python的字符串方法来实现:
```python
def count_digits_and_spaces(text):
num_digits = sum(c.isdigit() for c in text)
num_spaces = sum(c.isspace() for c in text)
return num_digits, num_spaces
```
通过调用 `isdigit()` 和 `isspace()` 方法,可以分别统计字符串中的数字和空格个数,并返回一个元组。需要注意的是,这个函数只会计算传入字符串中的数字和空格数量,不会计算其他字符的数量。
阅读全文