鱼C论坛

 找回密码
 立即注册
查看: 1283|回复: 4

[已解决]python 课后作业第18讲

[复制链接]
发表于 2020-3-20 22:31:44 | 显示全部楼层 |阅读模式

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

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

x
def findstr(destr,substr):
    count = 0
    length = len(destr)
    if substr not in destr:
        print('未找到相应字符串')
    else:
        for each1 in range(length - 1):
            if destr[each1] == substr[0]:        
                if destr[each1+1] == substr[1]:
                    conut += 1
                    
        print('子字符串共出%d' % count)
destr = input('请输入目标')
substr = input('请输入两个字符串')
findstr(destr,substr)

Traceback (most recent call last):
  File "C:/Users/11510/Desktop/aa.py", line 15, in <module>
    findstr(destr,substr)
  File "C:/Users/11510/Desktop/aa.py", line 10, in findstr
    conut += 1
UnboundLocalError: local variable 'conut' referenced before assignment
问一下在运行时为什么会报错   我是对着答案打的 答案能运行 我这个就报错。。。。。。。。。。。
最佳答案
2020-3-20 22:32:58
拼写错误。。。
count 写成 conut
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-20 22:32:58 | 显示全部楼层    本楼为最佳答案   
拼写错误。。。
count 写成 conut
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-21 09:14:17 | 显示全部楼层
是count,不是conut
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-21 10:18:23 | 显示全部楼层
你的拼写有问题,
应该是 count ,而不是 conut 。
在函数里没定义就是用就会报这个错误。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-21 12:18:01 | 显示全部楼层
拼写错误,是count,不是conut
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 05:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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