统计字符串中数字的个数。统计字符串中小字母‘a’的个数,并把‘a’替换成‘A’
时间: 2023-07-24 08:17:02 浏览: 79
统计一个字符串中数字的个数
好的,您可以使用 Python 中的字符串操作和循环语句来实现这个功能。示例代码如下:
```python
# 定义一个字符串
str = "a1b2c3d4e5f6a7a8a9"
# 统计字符串中数字的个数
num_count = 0
for s in str:
if s.isdigit():
num_count += 1
print("字符串中数字的个数为:", num_count)
# 统计字符串中小字母'a'的个数,并将其替换成大写字母'A'
a_count = 0
new_str = ""
for s in str:
if s == 'a':
a_count += 1
new_str += 'A'
else:
new_str += s
print("字符串中小字母'a'的个数为:", a_count)
print("替换后的字符串为:", new_str)
```
运行程序后,会输出字符串中数字的个数和小字母'a'的个数,并将所有的小字母'a'替换成大写字母'A'。
阅读全文