I have the Pandas Dataframe in this format
0 or LIST requests 1 us-west-2 2 1.125e-05 3 0 4
Following code can work:
df.col =pd.to_numeric(df.col, errors ='coerce').fillna(0).astype('int')