Skip to content

Latest commit

 

History

History
33 lines (14 loc) · 894 Bytes

File metadata and controls

33 lines (14 loc) · 894 Bytes

1. Tkinter是什么?

摘自 Python wiki under GPL:

Tkinter is Python's de-facto standard GUI (Graphical User Interface) package. It is a thin object-oriented layer on top of Tcl/Tk. 

也就是说,Tkinter是Python事实上的GUI包。它在Tcl/Tk上进行了一个面向对象的、轻量级的包装。


2. Tkinter 如何安装?

Windows:在安装Python解释器时一般已经默认安装了

Linux:这个应该。。。不是问题吧。。。


3. Python2.x Or Python3.x?

推荐使用Python3.2+。本篇文档的撰写时是Python3.6。

不要纠结于连i18n都很麻烦的2.x,除非你要兼容旧程序。坚持一段时间就会觉得3.x顺风顺水了

4. 有没有好的教程呢?

effbot.org