p ython统计字符串各字母字符的次数
时间: 2023-07-29 13:05:52 浏览: 102
可以使用Python的collections模块中的Counter函数来统计字符串中各字母字符的次数。具体代码如下:
```python
from collections import Counter
string = "Hello, World!"
counter = Counter(string)
print(counter)
```
输出结果如下:
```
Counter({'l': 3, 'o': 2, 'H': 1, 'e': 1, ',': 1, ' ': 1, 'W': 1, 'r': 1, 'd': 1, '!': 1})
```
其中,Counter函数将字符串转换为字典形式,每个字母作为key,出现次数作为value。
相关问题
p ython isalpha
`isalpha()` 是 Python 中的一个字符串方法,用于判断一个字符串是否只由字母组成。如果字符串只由字母组成,则返回 True,否则返回 False。
例如,以下代码将返回 True:
```
string = "hello"
print(string.isalpha())
```
而以下代码将返回 False:
```
string = "hello123"
print(string.isalpha())
```
阅读全文