Spyder-Anaconda的运行/执行代码问题

时间:2019-06-24 04:22:04

标签: python anaconda spyder

我正在运行AI语音助手的模拟版本。我正在spyder(v3.3)/ anaconda(1.9.7)上使用python代码(python 3.7)运行它。当我尝试运行代码时,它以某种方式忽略了我在编辑器上构建的程序,并继续等待其他执行。

我确实尝试检查我编写的每个代码,但没有错误或错误的迹象。 我在google上搜索过spyder的错误,但没有发现。

elif 'tell me about' in command:
        reg_ex = re.search('tell me about (.*)', command)
        try:
            if reg_ex:
                topic = reg_ex.group(1)
                ny = wikipedia.page(topic)
                IvyResponse(ny.content[:500].encode('utf-8'))
        except Exception as e:
                print(e)
                IvyResponse(e)
        IvyResponse('Hi there, I am Ivy and I am your personal Voice assistant! I am here to help you with your daily tasks so you can be more focused on your life\'s purpose. Please ask me anything or say "Help me" and I will tell you what all I can do for ya.')

我希望它能在运行程序/代码时说:“嗨,我是常春藤,我是您的个人语音助手!我在这里为您提供日常帮助,使您可以更加专注于自己的生活\的目的。请问我任何事情或说“帮助我”,我会告诉您我可以为您做的一切” 但它返回的是这样:

In [1]runfile('/Users/vuquoccuong121994/Desktop/test1.py', wdir='/Users/vuquoccuong121994/Desktop')
In [2]

因此,如上所述,它不执行In [1]就直接移至In [2](或至少尝试这样做) 请帮助我,谢谢。如果您发现难以想象的问题或难以理解的问题,请随时留下建设性的想法,我会针对此问题构建/编辑我的问题。谢谢

0 个答案:

没有答案