def test0(self, place, step_down, total): self.start_entry_cmbbox = QLineEdit(place) self.start_entry_cmbbox.move(100, 30) self.start_entry_cmbbox.show() start = 0 step = 90 self.test= [] # tkinter method self.test.append(self.start_entry_cmbbox) # tkinter method while start != total: self.entry_cmbbox = QLineEdit(place) self.entry_cmbbox.move(100, step) self.entry_cmbbox.show() self.test.append(self.entry_cmbbox) # tkinter method start += 1 step += step_down
test2= [] for i in self.test: to_append = (i.get()) test2.append(to_append)
Сигналы типа QLineEdit обработать не получается, проработать лист test не выходит.