I have a dataframe in pandas and I\'m trying to figure out what the types of its values are. I am unsure what the type is of column \'Test\'. However, when I ru
\'Test\'
It means "a python object", i.e. not one of the builtin scalar types supported by numpy.
np.array([object()]).dtype => dtype('O')