python统计字符串中指定字符出现的次数

2022-04-26 00:00:00 指定 字符串 字符

python统计字符串中指定字符出现的次数,例如想统计字符串中空格的数量

"""
皮蛋编程(https://www.pidancode.com)
创建日期:2022/4/21
功能描述:Pyhton统计指定字符在字符串中出现的次数
"""
s = "Count, the number    of spaces."
print(s.count(" "))
x = "I like to program in Python"
print(x.count("i"))
z = "https://www.pidancode.com"
print(z.count('o'))

输出:

7
2
2

代码主要使用到了字符串的count方法进行统计,代码在python3.9下测试通过。

相关文章