text convert into speech python

 from gtts import gTTS 


text="hello,how are you how can i help you"
speech = gTTS(text)
speech.save("hello2.mp3")


Comments

Popular Posts