题目内容

定义类如下class Hello():def __init__(self,name)self.name=namedef showInfo(self)print(self.name)下面代码能正常执行的ABCD

A. h = Helloh.showInfo()
B. h = Hello()h.showInfo(‘张三’)
C. h = Hello(‘张三’)h.showInfo()
D. h = Hello(‘admin’)showInfo

查看答案
更多问题

执行以下代码后的输出结果是哪一个选项?my_list=[s.lower()forsin'Lifeisshort,youneedPython.'.split('')]print('short'inmy_list)print(my_list[5])

A. Falsepython.
B. True python.
C. True Python
D. FalsePython

以下程序的执行结果是哪一个选项?

A. 90
B. 75
C. 87
D. 程序出错

计算numpy中元素个数的方法()

A. np.sqrt()
B. np.identity()
C. np.size()

已知c= np.arange(24).reshape(3,4,2) 那么c.sum(axis = 0)所得的结果为()

A. array([[24, 27], [30, 33],[36, 39],[42, 45]])
B. array([[12, 16],[44, 48],[76, 80]])
C. array([[ 1, 5, 9, 13],[17, 21, 25, 29],[33, 37, 41, 45]])

答案查题题库