Find the data type of the variable tenure from the churn dataframe for data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the churn.csv dataset on Root Directory

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

#Find the data type of the variable tenure from the churn dataframe.
churn['tenure'].dtypes