cara memperlambat kecepatan suara di pyttsx3

import pyttsx3.
engine = pyttsx3. init()
engine. setProperty("rate", 178) // 2nd parameter sets speed
engine. say("I am the text spoken after changing the speech rate.")
engine. runAndWait()
Adventurous Antelope