import pyttsx3
tts=pyttsx3.init()

for i in range(10):
	tts.say(str(i))

tts.runAndWait()

