Display data from list in label Python
问题 I have a list of data and the size of list is not fix. I want to display each item of this list in a label(Textview). self.valueT.append(value) for i in self.valueT: // print(i) self.result.setText(i) here in this code the print(i) work that display everything in console mean that it display the result but when I do self.result.setText(i) this one not working mean it did't display anything in the Label. and the second thing i want to display each value after 1sec. self.valueT is a list 回答1: A