如何解决Python代码中的语法问题

时间:2018-11-27 07:07:44

标签: python python-3.x syntax syntax-error

您好,我在下面使用此代码使python说话并说hello world。 想运行时得到这个error

这是我的代码:

 import win32com.client as wincl
 speak = wincl.Dispatch("Sapi.spvoice")

 #start talk
 (print ("hello world")    
 speak.speak("hello world") 

1 个答案:

答案 0 :(得分:1)

我建议您通读python的基础知识。

您上面的代码中有syntax issues

但是,要帮助您,请确保您在系统上将win32com作为python-package

然后运行:

import win32com.client as wincl
speak = wincl.Dispatch("Sapi.spvoice")

#start talk
print("hello world")    
speak.speak("hello world")