import speech_recognition
import os
import sys
import webbrowser
words = "Hello world!"
def talk(words):
print(words)
os.system("say " + words)
talk(words)
import os
import sys
import webbrowser
words = "Hello world!"
def talk(words):
print(words)
os.system("say " + words)
talk(words)
'say' is not recognized as an internal or external command,
operable program or batch file.
Hello world!
os.system("say " + words)
?