PyQt4 Qstring到PyQt5

时间:2019-01-28 17:12:53

标签: python pyqt pyqt4 pyqt5

在PyQt4中打印:

    s_filePath = QtGui.QFileDialog.getOpenFileName(
        None,
        'Select a File',
        'C:\\')
    print("This is the file",s_filePath)
     

('这是文件',PyQt4.QtCore.QString(u'C:/script.txt'))

在PyQt5中打印:

    s_filePath = QtWidgets.QFileDialog.getOpenFileName(
        None,
        'Select a File',
        'C:\\')
    print("This is the file",s_filePath)
     

这是文件('C:/script.txt','所有文件(*)')

在PyQt4版本中可以运行,但PyQt5不能运行,那么PyQt5中的PyQt4.QtCore.QString等效吗?

0 个答案:

没有答案