美文网首页
python 写入多行并换行

python 写入多行并换行

作者: _fishman | 来源:发表于2020-06-28 15:05 被阅读0次
    import os
    
    filename = '/tmp/test.txt'
    with open(filename,'w') as file_object:
      file_object.write("123\n")
      file_object.write("456\n")
      file_object.close()
    
    file_path="/tmp/test.txt"
    str_list=['11','22','33']
    f=open(file_path, "w")
    for line in str_list:
      f.write(line) 
      f.write('\n')
    

    相关文章

      网友评论

          本文标题:python 写入多行并换行

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