cara mengubah teks menjadi ucapan menggunakan pthon

# please subscribe my channel - https://bit.ly/2Me2CfB
from gtts import gTTS

speech = gTTS(text="hello")
speech.save('speech.wav')
PROGRAMMING HERO