“Cómo hacer que el programa habla en Python” Código de respuesta

Cómo hacer hablar a Python

#pip install pyttsx3
import pyttsx3
# simple code... you need to create the engine once but you need to add
#runAndWait everytime you use the engine
engine = pyttsx3.init()
engine.say('HELLO THERE')
engine.runAndWait()
Indian Coder Jr.

Cómo hacer hablar a Python

from win32com.client import Dispatch

speak = Dispatch("SAPI.SpVoice")

speak.Speak("Ciao")
Blushing Bat

Cómo hacer que el programa habla en Python

import pyttsx3

#create a function ,  so that you can easily call whatever your want program to speak

def speak(arg):
  
  engine = pyttsx3.init()
  engine.say(arg)
  engine.runAndWait()
  
 speak("hello there")
Aditya Pandey

Respuestas similares a “Cómo hacer que el programa habla en Python”

Preguntas similares a “Cómo hacer que el programa habla en Python”

Más respuestas relacionadas con “Cómo hacer que el programa habla en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código