Convertir des objets en entiers dans Python

# Converting objects values of Stay_In_Current_City into integers and assign the result back to df

df['Stay_In_Current_City']=df['Stay_In_Current_City'].astype(int)
DON-PECH