Вы можете использовать exit()
, или quit()
, или import os; os._exit(0)
, который принудительно выходит из программы, или import sys; sys.exit([error message])
, который вызывает SystemExit.
import gtts as gTTS
import os
myText = input("Enter your text: ")
language = 'en'
output = gTTS.gTTS(text=myText, lang=language, slow=False,)
output.save("output.mp3")
os.system("start output.mp3")
restart = False
while not restart:
question = input("Do you want to continue yes / no ? ")
if question == "yes": # error was here
print(myText)
else:
os._exit(0)
# Or even just set restart to True and the loop will break
# restart = True