Skip to content

Commit 64a8891

Browse files
authored
Update and rename task3.py to dotted_square.py
1 parent 9d2be79 commit 64a8891

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

task3.py renamed to dotted_square.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
speed=20
44
angle=90
55
thing = turtle.Turtle()
6-
6+
#making a dotted square by using a nested loop and penup and pendown functions
77
for i in range (4):
88
for j in range (5):
99
thing.penup()
@@ -12,4 +12,4 @@
1212
thing.forward(speed)
1313
thing.left(angle)
1414

15-
turtle.done()
15+
turtle.done()

0 commit comments

Comments
 (0)