Answers for "print type on each cell in column pandas"

0

print type on each cell in column pandas

>>> df.l.apply(type)
0     <type 'int'>
1     <type 'str'>
2     <type 'float'>
4     <type 'list'>
Posted by: Guest on March-19-2021

Code answers related to "print type on each cell in column pandas"

Python Answers by Framework

Browse Popular Code Answers by Language