numpy.dtype.kind — NumPy v1.11 Manual (original) (raw)
dtype.kind¶
A character code (one of ‘biufcmMOSUV’) identifying the general kind of data.
b | boolean |
---|---|
i | signed integer |
u | unsigned integer |
f | floating-point |
c | complex floating-point |
m | timedelta |
M | datetime |
O | object |
S | (byte-)string |
U | Unicode |
V | void |