Find the Datatype of Dataset (each column) for data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the mtcars.csv dataset on Root Directory of Jupyter

#Read the dataset 
data = pd.read_csv('mtcars.csv') 

#Find the Datatype of Dataset (each column)
datatype = data.dtypes
datatype



Output:-