import turtle def draw_square(x,y, size, fill_color): t = turtle t.penup() t.goto(x,y) t.pendown() t.fillcolor(fill_color) t.begin_fill() for side in range(4): t.fd(size) t.rt(90) t.end_fill() def draw_letter(): # Remove the next line, and write your code here return 0 def draw_letter_blocks(): # Remove the next line, and write your code here return None def draw_lollipop(): # Remove the next line, and write your code here return None def draw_pine_tree(): # Remove the next line, and write your code here return None def draw_star(): # Remove the next line, and write your code here return None def draw_scene(): draw_square(-100,10, 10, 'yellow') draw_lollipop() draw_pine_tree() draw_star() draw_letter() draw_letter_blocks() turtle.setup(400,400, 0,0) turtle.tracer(False) draw_scene() turtle.tracer(True) turtle.mainloop()