I have a list
temp = [1, 2, 3, 4, 5, 6, 7, 8]
I know to print to the console as strings, I would just do
for i in range(0, len(temp)):
temp[i] = str(temp[i])
and get
1
2
3
...
How can I do that since I don't think it can be done recursively when I setPlainText to the QPlainTextEdit? I assume I would have to remove the commas and brackets and insert \n, from which I started looking to solve my problems with this post: How to print a list with integers without the brackets, commas and no quotes?