一言蔽之,搭配是关键.以32位Window为例,先后安装: 1.PyQt PyQt4-4.10.3-gpl-Py3.3-Qt4.8.5-x32.exe http://www.riverbankcomputing.com/software/pyqt/download 这个简单,下载后直接双击安装. 如果你选择PyQt4-4.10.3-gpl-Py3.3-Qt5.1.0-x32.exe,那么你将失败. 附开发人员的解释: Please note that eric5 use with PyQt4/Q…
以下是我长久以来收集的一些Python实用技巧和工具,希望能对刚学习Python的新手有所帮助. 1.交换变量 x = 6 y = 5 x, y = y, x print x >>> 5 print y >>> 6 2.if 语句在行内 print "Hello" if True else "World" >>> Hello 3.连接 下面的最后一种方式在绑定两个不同类型的对象时显得很cool. nfc = […