赞
踩
-
- # 直接上代码
- import numpy as np
- import pandas as pd
-
- title='file_name' # 读取的文件名
- data=np.load(title+'.npy') # 读取numpy文件
- data_df=pd.DataFrame(data) # 利用pandas库对数据进行格式转换
-
- # create and writer pd.DataFrame to excel
- writer = pd.ExcelWriter(title+'.xlsx') # 生成一个excel文件
- data_df.to_excel(writer,'page_1') # 数据写入excel文件
- writer.save() # 保存excel文件
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。