I am reading an excel file using pandas library.The one of the column of excel contains numbers like 2961,0895,0073.But when I am reading them the '0' is getting removed in output.Like below
Model ID
a 2961.0
b 895.0
c 73.0
How I can retain entire four digit value before decimal ?
import pandas
import xlrd
df = pandas.read_excel(r"C:\Drive\Details.xlsx")
FORMAT = ['Model','ID']
df_selected = df[FORMAT]
print(df_selected)