测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A60756. 有Python程序段如下,下列选项错误的是?( )class Cat()

单选题

题目描述

Python程序段如下,下列选项错误的是?( )

class Cat():       
    def __init__(self,name,color):
        self.name=name
        self.color=color
    def sit(self):  
        print(self.color +self.name+"is sitting.")

选项(单选)