Convert a space delimited file to comma separated values file in python

前端 未结 8 1028
陌清茗
陌清茗 2021-01-04 06:11

I am very new to Python. I know that this has already been asked, and I apologise, but the difference in this new situation is that spaces between strings are not equal. I

8条回答
  •  耶瑟儿~
    2021-01-04 06:50

    You can use csv:

    import csv
    
    with open(ur_infile) as fin, open(ur_outfile, 'w') as fout:
        o=csv.writer(fout)
        for line in fin:
            o.writerow(line.split())
    

提交回复
热议问题