陣列j 是二維陣列,用來對陣列a 取值。 Python a = np.arange(10)**2 j = np.array( [[3, 4], [5, 6]] ) print('a=>{0}'.format(a)) print('j=>\n{0}'.format(j)) # ...
確定! 回上一頁