Pandas DataFrame dtypes Property | Find DataType of Columns
Pandas DataFrame is a two-dimensional size-mutable, potentially heterogeneous tabular data structure with labeled axes (rows and columns). Pandas DataFrame.dtypes attribute returns a series with the data type of each column. Example: C/C++ Code import pandas as pd df = pd.DataFrame({'Weight': [45, 88, 56, 15, 71], 'Name': ['Sam', 'Andrea', 'Alex',