Skip to content

Commit dea4c85

Browse files
authored
Update ex1.2CircleOfSquares.py
1 parent 31fe143 commit dea4c85

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ex1.2CircleOfSquares.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Write and run a function that draws 60 squares, turning right 5 degrees after each square. Use a loop!
2+
13
from turtle import *
24
shape('turtle')
35
speed(0)
@@ -9,4 +11,4 @@ def createSquares():
911

1012
for j in range(60):
1113
createSquares()
12-
right(5)
14+
right(5)

0 commit comments

Comments
 (0)