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

前端 未结 8 1018
陌清茗
陌清茗 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:53

    The csv module is good, or here's a way to do it without:

    #!/usr/local/cpython-3.3/bin/python
    
    with open('input-file.csv', 'r') as infile, open('output.csv', 'w') as outfile:
        for line in infile:
            fields = line.split()
            outfile.write('{}\n'.format(','.join(fields)))
    

提交回复
热议问题