Take pandas dataframe as
index A
0 1qwe 3asd
1 6qwe 35asd
2 11qwe 13asd
3 17qwe 8asd
4 5qwe 9asd
5 7qwe 2asd
6 1qwe 20asd
A.dtype = object
Convert this dataframe as follows
index A
0 1.03
1 6.35
2 11.13
3 17.08
4 5.09
5 7.02
6 1.20
A.dtype = float64
Is conversion possible in python? If yes, please give code in efficient way.
After period(.) padding of zero should take place if only one digit is present