Hello World!
This blog shares my coding journey, learning to program, and sharing at the same time what I learn.
Text to Speech conversion in Python
Get link
Facebook
X
Pinterest
Email
Other Apps
from win32com.client import Dispatch
speak_it = Dispatch("SAPI.SpVoice")
string = input("Enter the text and we will speak it: ")
speak_it.Speak(string)
Comments
Post a Comment
Write something to CodeWithAbdur!