标签: 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
答案 0 :(得分:0)
您可以使用字符串count方法:
my_str.count('ll')