1# Trust me this is not fake or anything, it'll do something.
2import antigravity
1import this
2# Prints out the Zen of Python which contains 19 principles that influence the development in python.
1#importing the gTTS libraryfrom gtts import gTTS#Asking the user for the required textmt = input("Enter the required text:\t")#Setting the output languagelanguage = ‘en’#Converting text to speech and choosing speed as fastvoice = gTTS(text=mt, lang=language, slow=False)#Saving the speech as mp3 filevoice.save(“conv.mp3”)