Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is this the cleanest way to write a list to a file, since writelines() doesn't insert newline characters?

file.writelines(["%s\n" % item  for item in list])

It seems like there would be a standard way...

share|improve this question
7  
do note that writelines doesn't add newlines because it mirrors readlines, which also doesn't remove them. – TokenMacGuy Sep 7 '11 at 4:27

10 Answers

up vote 81 down vote accepted

Personally, I'd use a loop:

for item in thelist:
  thefile.write("%s\n" % item)

or:

for item in thelist:
  print>>thefile, item

If you're keen on a single function call, at least remove the square brackets [] so that the strings to be printed get made one at a time (a genexp rather than a listcomp) -- no reason to take up all the memory required to materialize the whole list of strings.

share|improve this answer
1  
#2 is the most idiomatic IMHO. – Dave May 22 '09 at 18:14
3  
This isn't terribly complex, but why not just use pickle or json so that you don't have to worry about the serialization and deserialization? – Jason Baker May 22 '09 at 18:37
7  
For example because you want an output text file that can be easily read, edited, etc, with one item per line. Hardly a rare desire;-). – Alex Martelli May 23 '09 at 14:40
3  
dont forget the thefile = open('test.txt', 'w') – Thomas Sep 6 '12 at 12:29

What are you going to do with the file? Does this file exist for humans, or other programs with clear interoperability requirements, or are you just trying to serialize a list to disk for later use by the same python app. If the second case is it, you should be pickleing the list.

import pickle

pickle.dump(itemlist, outfile)

To read it back:

itemlist = pickle.load(infile)
share|improve this answer
5  
+1 - Why reinvent the wheel when Python has serialization built in? – Jason Baker May 22 '09 at 18:46
2  
+1 - outfile is something like: open( "save.p", "wb" ) infile is something like: open( "save.p", "rb" ) – ClothSword Apr 20 '12 at 11:05

The best way is:

import os

outfile.write("\n".join(itemlist))
share|improve this answer
1  
No trailing newline, uses 2x space compared to the loop. – Dave May 22 '09 at 18:13
Of course the first question that springs to mind is whether or not the OP needs it to end in a newline and whether or not the amount of space matters. You know what they say about premature optimizations. – Jason Baker May 22 '09 at 18:40
1  
A downside: This constructs the entire contents for the file in memory before writing any of them out, so peak memory usage may be high. – RobM Feb 17 '11 at 17:13
1  
Note from the documentation of the os module: Do not use os.linesep as a line terminator when writing files opened in text mode (the default); use a single '\n' instead, on all platforms. – jilles de wit Apr 26 '11 at 13:03
1  
I can never get this to work. I get this error: "text = '\n'.join(namelist) + '\n' TypeError: sequence item 0: expected string, list found" – Dan O'Day Aug 9 '11 at 3:16
show 1 more comment

Yet another way. Serialize to json using simplejson (included as json in python 2.6):

>>> import simplejson
>>> f = open('output.txt', 'w')
>>> simplejson.dump([1,2,3,4], f)
>>> f.close()

If you examine output.txt:

[1, 2, 3, 4]

This is useful because the syntax is pythonic, it's human readable, and it can be read by other programs in other languages.

share|improve this answer
best solution for human-readable output. – philgo20 Sep 7 '11 at 0:36

I thought it would be interesting to explore the benefits of using a genexp, so here's my take.

The example in the question uses square brackets to create a temporary list, and so is equivalent to:

file.writelines( list( "%s\n" % item for item in list ) )

Which needlessly constructs a temporary list of all the lines that will be written out, this may consume significant amounts of memory depending on the size of your list and how verbose the output of str(item) is.

Drop the square brackets (equivalent to removing the wrapping list() call above) will instead pass a temporary generator to file.writelines():

file.writelines( "%s\n" % item for item in list )

This generator will create newline-terminated representation of your item objects on-demand (i.e. as they are written out). This is nice for a couple of reasons:

  • Memory overheads are small, even for very large lists
  • If str(item) is slow there's visible progress in the file as each item is processed

This avoids memory issues, such as:

In [1]: import os

In [2]: f = file(os.devnull, "w")

In [3]: %timeit f.writelines( "%s\n" % item for item in xrange(2**20) )
1 loops, best of 3: 385 ms per loop

In [4]: %timeit f.writelines( ["%s\n" % item for item in xrange(2**20)] )
ERROR: Internal Python error in the inspect module.
Below is the traceback from this internal error.

Traceback (most recent call last):
...
MemoryError

(I triggered this error by limiting Python's max. virtual memory to ~100MB with ulimit -v 102400).

Putting memory usage to one side, this method isn't actually any faster than the original:

In [4]: %timeit f.writelines( "%s\n" % item for item in xrange(2**20) )
1 loops, best of 3: 370 ms per loop

In [5]: %timeit f.writelines( ["%s\n" % item for item in xrange(2**20)] )
1 loops, best of 3: 360 ms per loop

(Python 2.6.2 on Linux)

share|improve this answer
+1 - really the best approach in case of large files. – Torben Klein May 6 at 4:16
file.write('\n'.join(list))
share|improve this answer
One should note that this will require that the file be opened as text to be truly platform-neutral. – Jason Baker May 22 '09 at 18:42

Using Python 3 syntax:

with open(filepath, 'w') as file:
    for item in thelist:
        file.write("{}\n".format(item))

This is platform-independent.

share|improve this answer

In General

Following is the syntax for writelines() method

fileObject.writelines( sequence )

Example

#!/usr/bin/python

# Open a file
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name

# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line

seq = ["This is 6th line\n", "This is 7th line"]
# Write sequence of lines at the end of the file.
fo.seek(0, 2)
line = fo.writelines( seq )

# Now read complete file from beginning.
fo.seek(0,0)
for index in range(7):
   line = fo.next()
   print "Line No %d - %s" % (index, line)

# Close opend file
fo.close()

Reference

http://www.tutorialspoint.com/python/file_writelines.htm

share|improve this answer

Let avg be the list, then:

In [29]: a = n.array((avg))
In [31]: a.tofile('avgpoints.dat',sep='\n',dtype = '%f')

You can use %e or %s depending on your requirement.

share|improve this answer

You have an unsorted list of files stacked one each above other. Write the following fuctions:

  1. Add new file (each file contain :fileName and fileNo).
  2. Sort files.
  3. Print all files.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.