Text To Speech Converter Python Program
In this program, we are gonna build a python code to create a text to speech converter program.
# install libraries pip install pyttsx3 and pip install pywin32
Program -
import pyttsx3
data = input("Enter the text to convert to Speech")
engine = pyttsx3.init()
engine.say(data)
engine.runAndWait()
0 Comments