I have the Zipcode as a column in a dataframe in below format 19678.0 I would like to convert that into int64 19678 When I am trying to run the below code,
call_df['zip']=int(call_df['zip'])
It Says TypeError: cannot convert the series to
Can some one help me with this?