5 lines
92 B
Python
5 lines
92 B
Python
import pyttsx
|
|
|
|
engine = pyttsx.init()
|
|
engine.say("It was all a dream.")
|
|
engine.runAndWait()
|