Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
11 lines
155 B
Python
11 lines
155 B
Python
from turtle import *
|
|
color('red', 'yellow')
|
|
begin_fill()
|
|
while True:
|
|
forward(200)
|
|
left(170)
|
|
if abs(pos()) < 1:
|
|
break
|
|
end_fill()
|
|
done()
|