show/hide this revision's text 3 scipy.ScalarType

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
>>>
show/hide this revision's text 2 man reference

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'>
>>>
show/hide this revision's text 1

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'>
>>>