Text to voice in python

# for converting your text into voice you need to install win32com library and there are many more libraries for this purpose like gtt etc.

import win32com.client as wincl
speak=wincl.Dispatch("SAPI.SpVoice")
speak.Speak("Hello World")

Leave a Reply