generated from mwc/lab_iteration
1) I think coming from for loops in JS makes python for loops loops look a little weird sometime. But also utilizing list items as distances for Turtle is really cool, I didnt even think of that, im wondering if you could do the same on JS. It just looks a little different and obviously there are different use cases. 2)
15 lines
222 B
Python
15 lines
222 B
Python
from turtle import *
|
|
|
|
|
|
def square(side_length):
|
|
for i in range(4):
|
|
forward(side_length)
|
|
left(90)
|
|
#forward(side_length)
|
|
|
|
sizes = [20, 40, 60, 80, 100]
|
|
for size in sizes:
|
|
square(size)
|
|
|
|
done()
|