我正在尝试找出一种方法,以便使用该print()
功能打印在屏幕上的文本也同时被朗读。我目前正在使用该pyttsx3
模块,但我不知道该怎么做。
我不太了解在这种情况下我可以尝试什么。下面的代码只是一个示例代码。
import pyttsx
engine = pyttsx.init()
print('Sally sells seashells by the seashore.')
engine.say('Sally sells seashells by the seashore.')
print('The quick brown fox jumped over the lazy dog.')
engine.say('The quick brown fox jumped over the lazy dog.')
engine.runAndWait()
我希望print
和engine.say
命令一起工作。