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 では、次の方法で特定のデータ型のサイズ (バイト単位) を取得できます。
datatype(...).itemsize
また:
datatype(...).nbytes
例えば:
np.float32(5).itemsize #4 np.float32(5).nbytes #4
2 つの質問があります。まず、データ型のインスタンスを作成せずにこの情報を取得する方法はありますか? itemsize第二に、との違いは何nbytesですか?
itemsize
nbytes