Skip to content

Commit

Permalink
Merge pull request #683 from ananyathomas/ananya
Browse files Browse the repository at this point in the history
This solves issue #681
  • Loading branch information
rjkalash authored Oct 12, 2021
2 parents 99c9bc0 + 39cc222 commit cc8249f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Python/draw.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from turtle import *
color('red')
bgcolor('black')
speed(11)
hideturtle()
b = 0
while b < 200:
right(b)
forward(b * 3)
b = b+ 1
done

0 comments on commit cc8249f

Please sign in to comment.