I have a data frame in the following manner
d=pd.DataFrame({"col1":['a','b','c','d'],
"col2":['1.2M', '13.22B' , '0.2M' , '155.6M']})
I want to convert 'col2' in integer format
expected Output
d=pd.DataFrame({"col1":['a','b','c','d'],
"col2":['1200000', '13220000000' , '200000' , '155600000']})