このコードを Python シェル 3.3.2 で実行しましたが、SyntaxError: invalid syntax
.
class Animal(object):
"""Makes cute animals."""
is_alive = True
def __init__(self, name, age):
self.name = name
self.age = age
def description(self):
print (self.name)
print (self.age)
hippo = Animal("2312",21)#error occurs in that line
hippo.description()
私は Python の初心者で、このコードを修正する方法がわかりません。