根号1989 发表于 2017-12-4 22:37:19

兴趣来了,小甲鱼老师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 次

从拍笋世界路过 发表于 2020-5-1 18:07:36

你的会存在个问题,假如目标字符串是“yoooyouyou”,子字符串是“oo”,只会会计为出现过1次,而小甲鱼的是2次
页: [1]
查看完整版本: 兴趣来了,小甲鱼老师18讲习题编写一个findstr()函数