Как говорить по тексту с питоном

#pip install pyttsx3 in the prompt
import pyttsx3
def speak(text):
  if text == None and text == "":
    return "The argument text is None or empty"
  speaking = pyttsx3.speak(text)
  return speaking
Programmer of empires