import numpy as np. start = time.time() a=[] for i in range(500000): a.append(i) a = np.array(a) end = time.time() print (end-start)
確定! 回上一頁