使用Qt写了个窗口,运行报错,无法正常运行python程序,获得的报错信息如下: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV) 经过仔细查看发现是在使用Qt模块导入了Qt4和Qt5两个模块(存在重合的部分),部分代码如下: //Qt5 from PyQt5 import QtCore, QtGui, QtWidgets from PyQt5.QtGui import QFont, QBrush fr…