登录
注册
首页
->
Python期末
下载题库
a=np.arange(8).reshape(2,4),np.hsplit(a,2)返回值是______。
答: array([[0, 1], [4, 5]]), array([[2, 3], [6, 7]])]
继续答题:
下一题
更多Python期末试题
1
请问代码语句 print(“hello,world”)和语句print(“hello”,”world”)输出的内容一致吗?