python读取dat文件并保存为Excel格式

python读取dat文件并保存为Excel格式:

import pandas as pd

df = pd.read_csv('file path/file.dat',sep=' ',header=0,names=["N1", "N2", "N3"])
df.to_excel('save path /filename.xlsx', index = False)

你可能感兴趣的:(#,python,python)