我在Python Shell 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的新手,不知道如何解决此代码。
相关分类