Python虚拟助手在一段代码后不继续运行,而1:
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python虚拟助手在一段代码后不继续运行,而1:相关的知识,希望对你有一定的参考价值。
我将提供一部分代码。在while块内使用命令后,它不会继续。我认为是代码块text = get_audio().lower()给我带来了错误。
def process_text():
pass
if __name__ == "__main__":
assistant_speaks('''Hello, I am a Virtual Assistant.
I am here to make your life easier. You can command me to perform
various tasks such as calculating sums or opening applications.
Please tell me who you are.''')
name = 'are'
name = get_audio()
assistant_speaks("Hello, " + name + '.')
while 1:
assistant_speaks("What can i do for you?" + name + '.')
text = get_audio().lower()
if text == 0:
continue
if "exit" in str(text) or "bye" in str(text) or "sleep" in str(text):
assistant_speaks("Ok bye, " + name + '.')
break
# calling process text to process the query
process_text()
def process_text():
try:
if 'search' in input or 'play' in input:
# a basic web crawler using selenium
search_web(input)
return
elif "who are you" in input or "define yourself" in input:
speak = '''Hello, I am a virtual assistant.
I am here to make your life easier. You can command me to perform
various tasks such as calculating sums or opening applications.'''
assistant_speaks(speak)
return
基本上,当我问elifs的时候,它没有回答任何问题。过了try。
有人有什么想法吗?
答案
为了从你的程序中得到你想要的行为,你至少应该纠正三个错误。
- 替换
input
与text
里面try
块。在Python中。input
是一个内置函数,而不是一个字符串。你已经将用户的答案分配给了变量text
所以为什么不用那个呢?) - 定义你的
process_text
功能 之前 你叫它。实际上,你应该把你调用的那条线移动到process_text()
在该函数定义后的某个地方。 - 还有一些缩进的错误,最重要的是当你调用了
process_text()
函数:你应该把这行取消缩进一级,否则它将被执行在if "exit" in ...
块。
您还应该定义 process_text
前,因为你只需要定义一次。
以上是关于Python虚拟助手在一段代码后不继续运行,而1:的主要内容,如果未能解决你的问题,请参考以下文章
UIButton 操作在一段时间后不起作用(可能在一些垃圾收集之后)