此代码有效,但在这里阅读帖子我得到的印象可能不是#34; Pythonic"解。有没有更好的方法来解决这个特定的问题:
此代码的作用:它计算在另一个字符串中找到的一个字符串的实例并返回计数。如果用户尝试传入空字符串,则会引发错误。
我提出的代码版本,但想知道是否有更好的效率更多" Pythonic"这样做的方法:
def count_string(raw_string, string_to_count):
if len(string_to_count) == 0:
raise ValueError("The length of string_to_count should not be 0!")
else:
str_count = 0
string_to_count = string_to_count.lower()
raw_string = raw_string.lower()
if string_to_count not in raw_string:
# this causes early exit if string not found at all
return str_count
else:
while raw_string.find(string_to_count) != -1:
indx = raw_string.find(string_to_count)
str_count += 1
raw_string = raw_string[(indx+1): ]
return str_count
此代码是用Python 2.7编写的,但应该在3.x中运行。
答案 0 :(得分:10)
为什么不使用count
的{{1}}方法?
str
答案 1 :(得分:2)
另一种可能的解决方案。
>>> a= 'almforeachalmwhilealmleandroalmalmalm'
>>> len(a.split('alm')) - 1
6
>>> q = "abcghabchjlababc"
>>> len(q.split("abc")) - 1
3