Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、NumPy 配列がある場合
import numpy as np a = np.arange(10) b = np.zeros(5)
bの先頭に挿入するにはどうすればよいaですか?
b
a
サイズの新しい配列を作成してスライスの割り当てを行うことができることは知ってlen(a)+len(b)いますが、配列を直接挿入する方法はありますか?
len(a)+len(b)