Hey De,
That turtle graphics stuff is interesting.
I found the code to do this :
# Turtle star
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
.....forward(200)
.....left(170)
.....if abs(pos()) < 1:
..........break
end_fill()
done()
# Just replace the dots with one or two tabs.
Zim.

Mad Poet Strikes Again.