鱼C论坛

 找回密码
 立即注册
查看: 1200|回复: 3

[已解决]小甲鱼python第18讲课后习题的操作题第二题有点疑问

[复制链接]
发表于 2020-9-9 22:55:26 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
编写一个函数 findstr(),该函数统计一个长度为 2 的子字符串在另一个字符串中出现的次数。例如:假定输入的字符串为“You cannot improve your past, but you can improve your future. Once time is wasted, life is wasted.”,子字符串为“im”,函数执行后打印“子字母串在目标字符串中共出现 3 次”。

def findstr(string,str_son):
    times = 0
    for each in string:      
        if str_son[0] == each:
            i = string.find(each)       #用find方法返回这个元素的索引值
            if str_son[1] == string[i+1]:
                times += 1
            
    print('子字符串在目标字符串中共出现' , times , '次')
    return times

string = input('请输入目标字符串:')
str_son = input('请输入子字符串(两个字符):')
findstr(string,str_son)


问题:为啥我这个方法最后返回的是6次啊?请各位大佬赐教
最佳答案
2020-9-9 23:38:39
这样写就行了
def findstr(string, str_son):
    times = 0
    while string.find(str_son)>0:
        num=string.find(str_son)
        print(f'子字符串在目标字符串中:第{num}位')
        times=times+1
        string=string[num+2:]
        print(f'剩余要找的字符串为:{string}')


    print(f'子字符串在目标字符串中共出现{times}次')
    return times


#string = input('请输入目标字符串:')
string ='You cannot improve your past, but you can improve your future. Once time is wasted, life is wasted.'
#str_son = input('请输入子字符串(两个字符):')
str_son ='im'
findstr(string, str_son)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-9 23:30:28 | 显示全部楼层
本帖最后由 疾风怪盗 于 2020-9-9 23:41 编辑
i = string.find(each)  # 用find方法返回这个元素的索引值
这一步有问题,一直找到的是第11位的数,没变化
输出是6,意思找到了6个i,就没判断m
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-9 23:38:39 | 显示全部楼层    本楼为最佳答案   
这样写就行了
def findstr(string, str_son):
    times = 0
    while string.find(str_son)>0:
        num=string.find(str_son)
        print(f'子字符串在目标字符串中:第{num}位')
        times=times+1
        string=string[num+2:]
        print(f'剩余要找的字符串为:{string}')


    print(f'子字符串在目标字符串中共出现{times}次')
    return times


#string = input('请输入目标字符串:')
string ='You cannot improve your past, but you can improve your future. Once time is wasted, life is wasted.'
#str_son = input('请输入子字符串(两个字符):')
str_son ='im'
findstr(string, str_son)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-10 10:09:06 | 显示全部楼层
def findstr(string, str_son):
    return len(string.split(str_son)) - 1

string ='You cannot improve your past, but you can improve your future. Once time is wasted, life is wasted.'
str_son ='im'
print(findstr(string, str_son))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 17:01

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表