# Globals for the directions # Change the values as you see fit EAST = None NORTH = None WEST = None SOUTH = None class Robot: def __init__(self, direction=NORTH, x=0, y=0): pass