当前位置: 代码迷 >> 综合 >> 表格(xlsx,csv)文件转为txt文件,pandas
  详细解决方案

表格(xlsx,csv)文件转为txt文件,pandas

热度:10   发布时间:2023-11-22 07:25:52.0
import pandas as pdexcle_file=pd.read_excel("./data.xlsx")   #可以读入.csv,xlsx等等#excle_file[1]=-1 #将第二列全部修改为-1excle_file.to_csv('./w_data.txt', sep='\t', index=None) 
  相关解决方案