I want my code to run by showing the qtwidget and then running the forloop, but it runs the forloop then shows my widget to me. Why is this?
class tes(QWid
It's because you run app.exec_() after the for loop executes during the tes object initialization.
app.exec_()
tes