Sep-16-2020, 07:03 PM
Hello all;
I am importing an excel sheet into python as a dataframe using the code:-
In this excel sheet i have a set of columns with the following values:-
Column (A) Column (B)
043.0550 043.0550
049.1100 049.1100
However after importing the data, python shows these values in the dataframe as:-
43.055 43.055
49.11 49.11
It strips away the leading 0 which is fine but it also removes all of the zeros after the decimal point.
Can anyone tell me how i can overcome this?
Thank you.
I am importing an excel sheet into python as a dataframe using the code:-
1 |
Report = pandas.read_excel(Crack_Report, sheet_name = "Current" , usecols = ( "A:BA" ), skiprows = ( 4 )) |
Column (A) Column (B)
043.0550 043.0550
049.1100 049.1100
However after importing the data, python shows these values in the dataframe as:-
43.055 43.055
49.11 49.11
It strips away the leading 0 which is fine but it also removes all of the zeros after the decimal point.
Can anyone tell me how i can overcome this?
Thank you.