How to get my loop items on a different line

edited November 2017 in Python Mode

Okay, so I finally figured out how to display my loop items as text, by running a simple loop, however, I don't know how to make them appear one under the other.

example_list= [1,2,3, 4, 5]

for elements in example_list:
    text (elements , 50, 50)

I should note, that I tried to create a variable for y, that took in the number of items, but that didn't quite work

Answers

Sign In or Register to comment.