Files
Python/Object Oriented Programming/shape_class.py
2018-10-18 18:44:25 -07:00

10 lines
181 B
Python

class Shape:
def __init__(self, color=None):
self.color = color
def get_color(self):
return self.color
def __str__(self):
return self.get_color() + ' Shape'