import numpy as np arr = np.random.randn(8) new = arr.sort() new1 = np.sort(arr) print new print new1. I expected the two new arrays to be the same a sorted ...
確定! 回上一頁