Json – How to use pd.read_excel without changing values or format
I have this data in Excel File When read with this logic, df = pd.read_excel(xls_file_path) # Convert DataFrame to JSON json_data = df.to_json(orient='records') print(json_data) [{"Name":"Deepak Kalindi","Employee ID":101,"Joining Date":1704153600000,"Leaving Date":null,"Monthly Salary":12000,"Number of full days":27,"Number of half days":2.5,"Number of leaves":1.5,"OT (full Day)":3,"OT…