7 lines
94 B
Python
7 lines
94 B
Python
import turtle
|
|
for x in range(0,4):
|
|
turtle.forward(100)
|
|
turtle.left(90)
|
|
turtle.done()
|
|
|