We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9bd54b commit 090f132Copy full SHA for 090f132
Koch Curve/koch curve.py
@@ -23,10 +23,10 @@ def snowflake(lengthSide, levels):
23
penup() #Pull the pen up – no drawing when moving.
24
#Move the turtle backward by distance, opposite to the direction the turtle is headed.
25
#Do not change the turtle’s heading.
26
- backward(length/2.0)
27
- pendown()
+ backward(length/2.0)
+ pendown()
28
for i in range(3):
29
#Pull the pen down – drawing when moving.
30
snowflake(length, 4)
31
right(120)
32
- mainloop() #To control the closing windows of the turtle
+ mainloop() #To control the closing windows of the turtle
0 commit comments