Answers for "pandas, get column dtype"

2

get columns based on dtype pandas

>>df.select_dtypes(include='object').columns

Index(['C', 'D'], dtype='object')
Posted by: Guest on March-16-2021

Code answers related to "pandas, get column dtype"

Python Answers by Framework

Browse Popular Code Answers by Language