Examples
import numpy as np import pandas as pd
df = pd.DataFrame([[2, 2.5]], columns=['int', 'float']) row = next(df.iterrows())[1] row
int 2.0 float 2.5 Name: 0, dtype: float64
row['int'].dtype
dtype('float64')
df['int'].dtype
dtype('int64')