# A different way to import turtle commands # which means we do not need to create a pen from turtle import * #set up for shape 1 color("red","yellow") pensize(5) speed(1) # what shape is shape 1? begin_fill() forward (100) # forward 100 right(90) # rotate 90 degrees forward (100) right(90) forward (100) right(90) forward (100) end_fill() # set up for shape 2 penup() color('blue','green') forward(200) pendown() # what shape is shape 2? begin_fill() right (120) forward(100) right (120) forward(100) right (120) forward (100) end_fill()