鱼C论坛

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

[已解决]搞不明白了 求大神讲解下

[复制链接]
发表于 2022-9-26 07:58:00 | 显示全部楼层 |阅读模式

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

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

x
前面创建的2个函数没有问题正常运行 第3个函数报错

Traceback (most recent call last):
  File "C:\Users\Administrator\Desktop\课件\最后1116668886611.py", line 18, in <module>
    censored_text_creata('Try','lame!lame!lame!')
  File "C:\Users\Administrator\Desktop\课件\最后1116668886611.py", line 17, in censored_text_creata
    text_creata(name,clean_msg)
NameError: name 'text_creata' is not defined. Did you mean: 'text_create'?

代码如下:

def text_create(name,msg):                              
    desktop_path = 'C:\\Users\\Administrator\\Desktop\\'
    full_path = desktop_path + name + '.txt'
    file = open(full_path,'w')
    file.write(msg)
    file.close()
text_create('hello','hello word')


def text_filter(word,censored_word = 'lame',changed_word = 'Awesome'):
    return word.replace(censored_word,changed_word)
text_filter('Python is lame')


def censored_text_creata(name,msg):
    clean_msg = text_filter(msg)
    text_creata(name,clean_msg)
censored_text_creata('Try','lame!lame!lame!')
最佳答案
2022-9-26 09:53:45


方法名打错了吧, 最后一个 e 打错成了 a,即 text_creata 改成 text_create

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

使用道具 举报

 楼主| 发表于 2022-9-26 08:26:22 | 显示全部楼层
卧槽 找到原因了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-9-26 09:53:45 | 显示全部楼层    本楼为最佳答案   


方法名打错了吧, 最后一个 e 打错成了 a,即 text_creata 改成 text_create

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

使用道具 举报

 楼主| 发表于 2022-9-26 15:47:53 | 显示全部楼层
是的   开始没有注意到
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-25 22:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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