美文网首页
Python合并多行为一行

Python合并多行为一行

作者: simon000 | 来源:发表于2017-06-11 22:43 被阅读425次

    最初状态:

    '新crv和途观'
    '标致 3008'
    'cr-v尾翼'
    

    合并后状态

    '新crv和途观','标致 3008','cr-v尾翼'
    

    脚本

    # read data from file
    with open("data_src.txt", 'rt') as src:
        data = [ln.strip() for ln in src]
     
    # distinct data and write to file with ', ' join
    with open("data_sto.txt", 'wt') as sto:
        sto.write(', '.join(list(set(data))))
    

    参考资料

    百度知道:python 怎么合并多行为一行?

    相关文章

      网友评论

          本文标题:Python合并多行为一行

          本文链接:https://www.haomeiwen.com/subject/uczfyttx.html