PyQt:成功解决PyQt4升级到PyQt5改变的函数或方法
PyQt:成功解决PyQt4升级到PyQt5改变的函数或方法
因版本升级而改变的一些方法或函数
from PyQt5.QtWidgets import QMessageBox
from PyQt4.QtGui import QMessageBox
出现的错误→解决办法
1、Exception "unhandled AttributeError"
type object 'QInputDialog' has no attribute 'getInteger'
将my_str, ok=QInputDialog.getInteger改为my_str, ok=QInputDialog.getInt
参考文献
Differences Between PyQt4 and PyQt5
赞 (0)