I wish to have each item in my list printed on a different line in the same textbox in EasyGUI. How do I code for this?
EDIT: Sorry, I was a bit vague. Let me explain further. I have a list called combinations. It has 50-100 entries. When I try to output it in a textbox like this:
eg.textbox(combinations)
It prints it in a sort of paragraph format.Like this:
item, item, item, item, item, item, etc.
I want to print it more like a list, with one item per line, like this:
item,
item,
item,
item,
How do I code for this?