📜  将任何 .pdf 文件转换为音频 python dev.to - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:24.025000             🧑  作者: Mango

代码示例1
from tkinter import Tk
from tkinter.filedialog import askopenfilename

Tk().withdraw() # we don't want a full GUI, so keep the root window from appearing
filelocation = askopenfilename() # open the dialog GUI