相关试题
单选题 class Car: Category = '交通工具' def __init__(self, color, wheels=4, engine='汽油'): self.wheels = wheels self.color = color self._engine = engine def show_car_info(self): self.__init__('blue') print('车轮个数:%d, 颜色%s, 发动机%s' % (self.wheels, self.color, self._engine)) if __name__ == '__main__': car = Car('red') car.show_car_info() 以上代码的执行结果是()。
单选题 Python程序下列语句的执行结果为:() a=-5;b=0; if a and (a or b): print('结果为 true') else: print('结果为 false')
单选题 ()可以帮助企业将其拥有的大量数据转化为可操作的见解,从而实现价值。
单选题 ()是采用对误差的衡量来探索变量之间关系的一类算法。
单选题 def func(x): global y y = x + 10 print(y) if __name__ == '__main__': y = 10 func(10) print(y) 以上代码的执行结果是()。
单选题 source venv/bin/activate 可以实现的功能是()。
单选题 对极小极大算法的描述正确的是()。
单选题 ()可以先通过逐层预训练,再用反向传播(Back Propagation)算法进行精调的方式进行有效学习。