I have a dataframe having column name "money" which is in string format and i want to convert it into integer
Money
"32M"
"22B"
"200k"
"3.2M"
** Expected Output**
Money
32000000
2200000000
200000
32000000
I have a dataframe having column name "money" which is in string format and i want to convert it into integer
Money
"32M"
"22B"
"200k"
"3.2M"
** Expected Output**
Money
32000000
2200000000
200000
32000000