from turtle import * t = Turtle() # body t.up() t.goto(-45, -100) t.color('light slate blue') t.down() t.begin_fill() t.setheading(90) t.fd(280) t.right(90) t.fd(90) t.right(90) t.fd(280) t.right(90) t.fd(90) t.end_fill() # triangle t.up() t.goto(0, 260) t.color('gold') t.down() t.begin_fill() t.setheading(300) t.fd(125) t.right(120) t.fd(125) t.right(120) t.fd(125) t.end_fill() t.up() # engine t.goto(-45, -100) t.setheading(0) t.color('red') t.begin_fill() t.fd(90) t.right(90) t.fd(30) t.right(90) t.fd(90) t.right(90) t.fd(30) t.end_fill() # first wing t.up() t.goto(-45, 45) t.color('forest green') t.begin_fill() t.down() t.goto(-45, -180) t.goto(-90, -180) t.goto(-45, 45) t.end_fill() # second wing t.up() t.goto(45, 45) t.color('forest green') t.begin_fill() t.down() t.goto(45, -180) t.goto(90, -180) t.goto(45, 45) t.end_fill() t.hideturtle() mainloop()