用python统计字符串中小字母‘a’的个数,并把‘a’替换成‘A’
时间: 2023-08-25 19:04:27 浏览: 110
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
可以使用 Python 的内置函数 count() 和 replace() 来统计字符串中小写字母 'a' 的个数,并将其替换为大写字母 'A',代码如下:
```
string = input("请输入字符串:")
count = string.count('a') # 统计字符串中小写字母 'a' 的个数
new_string = string.replace('a', 'A') # 将字符串中小写字母 'a' 替换为大写字母 'A'
print("字符串中小写字母 'a' 的个数为:", count)
print("替换后的字符串为:", new_string)
```
其中,`string` 为用户输入的字符串,`count` 使用 count() 函数统计字符串中小写字母 'a' 的个数,`new_string` 使用 replace() 函数将字符串中小写字母 'a' 替换为大写字母 'A'。最后输出小写字母 'a' 的个数和替换后的字符串。
阅读全文