标签:style blog class code c tar
在字符串a中查找字符串b出现的次数...貌似不可以用a.count()
附上代码:
1 a = raw_input().strip()
2 b = raw_input().strip()
3 cnt = 0;
4 for i in xrange(len(a)):
5 cnt += 1 if a.find(b, i, i+len(b))!= -1 else 0
6 print cnt
hackerrank---Find a string,布布扣,bubuko.com
标签:style blog class code c tar
原文地址:http://www.cnblogs.com/Stomach-ache/p/3721921.html