You can use type():
>>> a=scipy.array([1,2,3,4])
>>> b=array.array('L')
>>> type(a)
<type 'numpy.ndarray'>
>>> type(b)
<type 'array.array'>
>>> c=10.5
>>> type(c) in scipy.ScalarType
True
>>>
|
3 | scipy.ScalarType | ||
|
You can use
|
||||
|
2 | man reference | ||
|
You can use
|
||||
|
1 |
|
||
|
You can use
|
||||