+ 1
Need help with creation of a loop!!
I need to form a loop to create multiple lines between the two lines, can't figure out how to include multiple co ordinates in a loop,please help🙆 https://code.sololearn.com/chhsy9Uyv580/?ref=app https://code.sololearn.com/chhsy9Uyv580/?ref=app
2 ответов
+ 5
1) Make your list
2) Use Loop to draw
Pseudo code
x=[1,2,3]
y=[1,2,3]
size=10
for i in range( len(x) ):
draw(x[i], y[i], size)
+ 1
O.O,thank you so much,i will try it asap!!