We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31fe143 commit dea4c85Copy full SHA for dea4c85
ex1.2CircleOfSquares.py
@@ -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
+
3
from turtle import *
4
shape('turtle')
5
speed(0)
@@ -9,4 +11,4 @@ def createSquares():
9
11
10
12
for j in range(60):
13
createSquares()
- right(5)
14
+ right(5)
0 commit comments