猿问

SyntaxError:创建类的实例时语法无效

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


慕桂英3389331
浏览 208回答 1
1回答
随时随地看视频慕课网APP

相关分类

Python
我要回答