pandas typr of each cell in series code example
Example: pandas typr of each cell in series
>>> df["l"].apply(type)
0 <type 'int'>
1 <type 'str'>
2 <type 'float'>
4 <type 'list'>
>>> df["l"].apply(type)
0 <type 'int'>
1 <type 'str'>
2 <type 'float'>
4 <type 'list'>