鱼C论坛

 找回密码
 立即注册
查看: 2154|回复: 6

[已解决]第018讲:函数:灵活即强大

[复制链接]
发表于 2020-2-29 23:28:19 | 显示全部楼层 |阅读模式
6鱼币
本帖最后由 巨鲸落 于 2020-2-29 23:29 编辑

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

def findStr(desStr, subStr):
    count = 0
    length = len(desStr)
    if subStr not in desStr:
        print('在目标字符串中未找到字符串!')
    else:
        for each1 in range(length-1):      
            if desStr[each1] == subStr[0]:
                if desStr[each1+1] == subStr[1]:
                    count += 1
                    
        print('子字符串在目标字符串中共出现 %d 次' % count)

desStr = input('请输入目标字符串:')
subStr = input('请输入子字符串(两个字符):')
findStr(desStr, subStr)
这个没有考虑到两个字母相同时目标字符串中包含重复的情况,例如在ssssss中查找ss的情况可能出现重复,求高手指点如何去除
def findstr(x,y ):
    x = input('请输入目标字符串:')
    y = input('请输入子字符串(两个字符):')
    lanth = len(x)
    count = 0
    if y not in x:
        print('子字符串不在目标字符串中')
    else:
        for each in lanth:
            if x[each] == y[0] and x[each+1] == y[1] and y[0] != y[1]:
                count = count + 1
            elif x[each] == y[0] and x[each+1] == y[1] and y[0] != y[1]:
我写到这没思路了
最佳答案
2020-2-29 23:28:20
def findStr(desStr , subStr):
    k , count , desLen , subLen = 0 , 0 , len(desStr) , len(subStr)
    if desLen >= subLen and subLen > 0 :
        while k + subLen - 1 < desLen :
            if desStr[k : k + subLen] == subStr :
                count , k = count + 1 , k + subLen - 1
            k += 1
    return count

print(findStr('ssssss' , 'ss'))
print(findStr('sssssss' , 'ss'))
print(findStr('ssssssss' , 'ss'))
        运行实况:
C:\Bin>python x.py
3
3
4

C:\Bin>

最佳答案

查看完整内容

运行实况:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-29 23:28:20 | 显示全部楼层    本楼为最佳答案   
def findStr(desStr , subStr):
    k , count , desLen , subLen = 0 , 0 , len(desStr) , len(subStr)
    if desLen >= subLen and subLen > 0 :
        while k + subLen - 1 < desLen :
            if desStr[k : k + subLen] == subStr :
                count , k = count + 1 , k + subLen - 1
            k += 1
    return count

print(findStr('ssssss' , 'ss'))
print(findStr('sssssss' , 'ss'))
print(findStr('ssssssss' , 'ss'))
        运行实况:
C:\Bin>python x.py
3
3
4

C:\Bin>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-1 11:12:51 | 显示全部楼层
是上面的一段有问题还是下面的一段有问题
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-1 11:13:46 | 显示全部楼层
能不能说清楚一点
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-1 11:31:49 | 显示全部楼层
else:
  index=0
  count=0
  while index<(length-1)
       if x[index]==y[0] and x[index+1]==y[1]
            index +=2
           count +=1
       else:
         index +=1
for循环应该是实现不了

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-2 09:26:19 | 显示全部楼层

你这个好妙啊!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-3-3 19:23:32 | 显示全部楼层
蒋博文 发表于 2020-3-1 11:13
能不能说清楚一点

上面是小甲鱼写的,考虑的情况不全我是觉得,下面是我写的没写完
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 06:39

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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