兴趣来了,小甲鱼老师18讲习题编写一个findstr()函数
def findstr(name):name= input("请输入字符串:")
temp = input("请输入子字符串(两个字符):")
if temp not in name:
print('在目标字符串中未找到子符串!')
else:
temp2 = name.count(temp)
print("子字符串在目标字符串中共出现",temp2,"次")
findstr(" ")
自己写了个,感觉也可以,小甲鱼老师编写的没看懂,好深奥啊,还得多学习
请输入字符串:You cannot improve yout past,but you can improve your future.Once time is wasted,life is wasted.
请输入子字符串(两个字符):im
子字符串在目标字符串中共出现 3 次
你的会存在个问题,假如目标字符串是“yoooyouyou”,子字符串是“oo”,只会会计为出现过1次,而小甲鱼的是2次
页:
[1]