We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4749d5d commit 4e6ad06Copy full SHA for 4e6ad06
pyttsx3/speak.py
@@ -0,0 +1,6 @@
1
+import pyttsx3 #import pyttsx3 module
2
+engine = pyttsx3.init() #pyttsx3.init() factory function to get a reference to a pyttsx3.Engine instance
3
+engine.say('Hello World')
4
+engine.say('Hello GitHub')
5
+engine.say('Hello Python Project Scripts')
6
+engine.runAndWait()
0 commit comments