题库 Python题库 题目列表 如下Python程序:class Cars(): &nb...
单选题

如下Python程序:

class Cars():
    def __init__(self,color,shape):
        self.color = color 
        self.shape = shape 
        print('您定制的{}{}已经生产好了!'.format(self.color,self.shape))
new_car = Cars('红色','小汽车')

执行程序后,打印的结果是?( )

A.

小汽车

B.

红色

C.

您定制的已经生产好了!

D.

您定制的红色小汽车已经生产好了!

题目信息
2024年 9月 选择题
0%
正确率
0
评论
18
点击