I\'m trying to install TTS package by using this. Everything was okay until I tried to execute the following command:
import pyttsx
I got b
I used this code after
pip install pywin32 pypiwin32 pyttsx3
and it worked perfectly for me
import os import sys import pyttsx3 engine = pyttsx3.init() engine.say('hello world ') engine.runAndWait()