标签:一个 state 语法 其他 需要 stat 取字符串 个数 元素
语法:
for i in range(len(string):
string[i:i+len(word)]
解析:i取字符串下标,并且会向后移动,string去当前i值到定位字符长度位置的字符元素
示例:判断字符个数
# def count_word2(string,word):
# times = 0
# state = 0
# for i in range(len(string)):
# if state>0:
# state = state - 1
# continue
# if string[i:i+len(word)] == word:
# times += 1
# state += len(word)-1 #由于角标从第一个字符开始判断,正确后除了第一个坐标的其他 坐标需要后移,因此减1
# return times
#
# print(count_word2(‘xxxxxxabcxxxxx‘,‘xxx‘))
# print(count_word2(‘ab‘,‘abc‘))
标签:一个 state 语法 其他 需要 stat 取字符串 个数 元素
原文地址:https://www.cnblogs.com/hjhlg/p/13167573.html