Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能解释一下 wxpython 和 tkinter 之间的区别?哪一个最适合发展?我想使用 python 开发一个媒体播放器。
这是两个不同的小部件库。
TkInter 是内置的,但是,据我所知,它将 python 语句转换为 tcl 语句,这可能不会使其快速。它看起来也像所有平台上的 tcl/tk 应用程序。
wxpython 不是内置的,因此您必须将它与您的代码一起分发到所有平台,尽管它可能“混合”更多。
当然,这取决于您的需求。
我见过很多使用 XULRunner 和 python 的应用程序,例如 Miro 和 Songbird,但我猜也有使用 gnome/gtk 的应用程序。
取决于您要支持哪些平台...