

What is the output of this code?
Trace the program the way the computer would, then make your call before running anything.
class Sky:
def __init__(self, color):
self.color = color
def get_color(self):
return self.color
day_sky = Sky("blue")
print(day_sky.get_color())