📅  最后修改于: 2022-03-11 14:46:09.279000             🧑  作者: Mango
from gtts import gTTS
import os
text = " python is the most easiest programing language "
language = "en-us"
roh = gTTS( text = text , lang = language , slow = False)
roh.save("play.mp3")
os.system(" start play.mp3")