python-common-code/voice/tsx_helloworld.py
2025-03-20 10:19:41 +09:00

6 lines
93 B
Python

import pyttsx3
engine = pyttsx3.init()
engine.say("Hello, World!")
engine.runAndWait()