6 lines
93 B
Python
6 lines
93 B
Python
import pyttsx3
|
|
|
|
engine = pyttsx3.init()
|
|
engine.say("Hello, World!")
|
|
engine.runAndWait()
|