Answers for "los mejores script de phython"

0

los mejores script de phython

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import win32com.client

speaker = win32com.client.Dispatch("SAPI.SpVoice")

while True:
    print("Introduzca el texto a reproducir:")
    s = raw_input()
    speaker.Speak(s)
Posted by: Guest on October-11-2020

Code answers related to "los mejores script de phython"

Python Answers by Framework

Browse Popular Code Answers by Language