I ma trying to run the Audio in loop in google colab but it is not giving mi any output
from gtts import gTTS
from IPython.display import Audio
for voice in ["Aniket","sachin"]:
tts = gTTS("Hello {}".format(voice))
tts.save('1.wav')
sound_file = '1.wav'
Audio(sound_file, autoplay=True)
Output what I want is it should sound hello aniket hello sachin Pleas help