cs50/speech.py

5 lines
88 B
Python

import pyttsx3
engine = pyttsx3.init()
engine.say("This was CS50!")
engine.runAndWait()