如何在python中查找字符串在特定字符串中重复的次数

时间:2015-01-30 13:11:13

标签: python python-2.7

我想查找python

中字符串中出现字符串的次数

我已经尝试了

my_str = "Hello world all in the world call me tell me"
sum(1 for x in my_str if x="ll")

我希望其结果为4

1 个答案:

答案 0 :(得分:0)

您可以使用字符串count方法:

my_str.count('ll')