The following is not applications software
Anonymous Poll
42%
Window XP
28%
Desktop publishing
19%
Spreadsheet
11%
Word processing
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
👍10❤3