import numpy as np
import pandas as pd

txt = np.loadtxt('data1.txt')
txtDF = pd.DataFrame(txt)
txtDF.to_csv('file1.csv', index=False)

相关文章:

  • 2021-09-01
  • 2021-12-17
  • 2022-01-16
  • 2022-01-13
  • 2022-12-23
  • 2021-08-03
  • 2021-06-13
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2022-02-10
  • 2021-07-17
  • 2022-02-10
相关资源
相似解决方案