12 2021 档案

摘要:Python os.walk 停止遍历满足条件的文件夹 import os for here, dirs, files in os.walk(startdir, topdown=True): dirs[:] = [] 注意:dirs[:] = [] 不能改为 dirs = [] 阅读全文
posted @ 2021-12-31 17:56 ibingshan 阅读(297) 评论(0) 推荐(0)
摘要:pyside qcombobox hide item from PySide2 import QtWidgets, QtCore comboBox.setItemData(1,QtCore.QSize(0,0),QtCore.Qt.SizeHintRole) 我们也可以使用其它role去改变item 阅读全文
posted @ 2021-12-02 12:00 ibingshan 阅读(209) 评论(0) 推荐(0)