Issue #7061: Added a 'Turtle star' sidebar

This commit is contained in:
Alexander Belopolsky 2010-11-09 18:40:03 +00:00
parent 922e904cca
commit 14fb79977b
5 changed files with 467 additions and 0 deletions

View file

@ -0,0 +1,10 @@
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()