python 统计字符串中指定字符出现次数的方法:
strs = "They look good and stick good!"
count_set = ['look','good']
res=strs.count('good')
print(res)
2024-02-15 09:58:04
python 统计字符串中指定字符出现次数的方法:
strs = "They look good and stick good!"
count_set = ['look','good']
res=strs.count('good')
print(res)