I’m getting an SCT Error in the Introduction to Classes module in Learn Python, on exercise 9 (“They’re Multiplying!”). I have the following code:
class Animal(object):
“”“Makes cute animals.”""
is_alive = True
health = ‘good’
def init(self, name, age):
self.name = name
self.age = age
Add your method here!
def description(self):
print self.name
print self.age
sloth = Animal(‘Flash’, 5)
ocelot = Animal(‘Chewie’, 3)
When I try to run it, I get an SCT Error and I’m not able to move on to the next lesson. I’m using Windows 10 OS, Chrome browser.