如何在 python 中表达意见
How to make something say in python
我想让我的 python 程序说
喜欢
a = "Hello Boss I am your program"
say(a)
#and it should say the text
提前致谢!
首先你需要安装名为 PYTTSX3 的模块。
执行 pip/pip3 安装 PYTTSX3
那么代码在这里:
import PYTTSX3 as speaker
tts = speaker.init()
def say(text):
tts.say(text)
tts.runAndWait()
a = "Hello Boss I am your program"
say(a)
这将大声朗读'Hello Boss I am your program'
;)
我想让我的 python 程序说 喜欢
a = "Hello Boss I am your program"
say(a)
#and it should say the text
提前致谢!
首先你需要安装名为 PYTTSX3 的模块。
执行 pip/pip3 安装 PYTTSX3
那么代码在这里:
import PYTTSX3 as speaker
tts = speaker.init()
def say(text):
tts.say(text)
tts.runAndWait()
a = "Hello Boss I am your program"
say(a)
这将大声朗读'Hello Boss I am your program' ;)