所以我试图使用python的pyttsx库让一个程序说出一个变量为True的东西,但它不起作用。
当程序启动时,它会说出我想说的内容,但在完成第一个句子后,它只重复第一个音节,我不明白为什么。代码是:
import pyttsx
text_to_speech_engine = pyttsx.init()
while True:
text_to_speech_engine.say('Sample Text')
text_to_speech_engine.runAndWait()