Skip to content
dreamcode
dreamcode
Lesson
Practice · OOP
  1. Predict
  2. Arrange
  3. Fill in
+20 XP on finish
PREDICT · READ BEFORE YOU WRITE

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())