# Complete this class to have a turtle object collect coins # and print out its score at the end from turtle import * from random import * s = Screen() s.setup(560,560) s.title("A turtle collecting coins!!") s.tracer(False) writer = Turtle(visible = False) writer.penup() writer.goto(0, -275) coins = [] for i in range(-4,5): for j in range(-4, 5): c = Turtle(shape="circle") c.color("", "orange") c.shapesize(0.5) c.goto(40*i, 40*j) coins.append(c) s.tracer(True)