每当我运行以下代码段(使用Python 3.6.1在MacOs 10.13.1上)时:
import tkinter
window = tkinter.Tk()
open_file = tkinter.Button(window, text="1", font=("Wingdings", 12))
open_file.pack()
而不是显示以下字形:
该计划显示:
有没有办法解决这个问题,以便正确显示Wingdings
字体?
(注意:Windows 10上的字体显示正常)