0
I’m learning python and I started using pyqt5 as a graphical interface and, to force learning, I’m doing a little contest ball drawing. For data analysis I’m using DataFrame
and adding to QListWidget.listWidget
.
However, when I send the data for visualization, the Rows and Columns indexes go together, as shown below. Does anyone know a function in the DataFrame
that does not show the indexes?
temp = pd.DataFrame(jogos)
interface.listWidget_2.addItem(temp.to_string())