How to align the text to center of cells in a QTableWidget

大兔子大兔子 提交于 2019-12-02 01:23:09

This line of code:

item = QTableWidgetItem(scraped_age).setTextAlignment(Qt.AlignHCenter)

will not work properly, because it throws away the item it creates before assigning it to the variable. The variable will in fact be set to None, which is the return value of setTextAlignment(). Instead, you must do this:

item = QTableWidgetItem(scraped_age) # create the item
item.setTextAlignment(Qt.AlignHCenter) # change the alignment
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!