最终比较,选择pyqt用于GUI开发 https://pythonspot.com/en/gui/ 图形化界面可以使用PyQt5, PyQt4, wxPython or Tk.模板 Graphical interfaces can be made using a module such as PyQt5, PyQt4, wxPython or Tk. If you are not sure which to pick, read the Introduction to GUI. PyQT5 Ar
最近在学习Python,在使用Tkinter做图形界面时遇到了几个小问题,网上查了一下,在Python2.x导入的是Tkinter,Python3则是tkinter.而且导入的simpledialog和message也不一样.具体是这样的:Python2.x from Tkinter import * import tkSimpleDialog as dl import tkMessageBox as mb Python3 from tkinter import * import tkinter