Excel是一款表格處理軟件,而JSON是一種輕量級的數據交換格式。將Excel數據轉換為JSON格式可以使得數據在Web應用程序之間傳輸更加方便,也更適合在JavaScript中處理。下面我們就來介紹一下如何將Excel數據轉換為JSON格式。
//首先安裝pandas和xlrd模塊 import pandas as pd import xlrd #讀取Excel文件 excel_file = 'input.xlsx' sheet_name = 'Sheet1' df = pd.read_excel(excel_file, sheet_name=sheet_name) #將DataFrame轉換為JSON格式 json_data = df.to_json(orient='records') #將JSON數據保存到文件中 with open('output.json', 'w') as f: f.write(json_data)
上述代碼中,我們首先導入了pandas和xlrd模塊,用于讀取Excel文件。然后使用read_excel函數將Excel數據讀取到DataFrame中,接著使用to_json方法將DataFrame轉換為JSON格式,并指定orient參數為'records',表示每條記錄用一條JSON對象表示。最后,將轉換后的JSON數據保存到文件中。
上一篇iis 發布vue