COD_CUST
10025.0
10761.0
10869.0
12361.0
trying to convert the above column into integer as below:
mser_offus['COD_CUST']=mser_offus['COD_CUST'].astype(int)
but getting the following error:
ValueError: invalid literal for int() with base 10: '10025.0'
.0only and cast to int?