# coding=utf-8

import pyttsx3

text='I love you 韩长菊'
voice=pyttsx3.init()
voice.say(text)
voice.runAndWait()
05-27 18:17