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...
|
Personally, I'd use a loop:
or:
If you're keen on a single function call, at least remove the square brackets |
|||||||||||||||||
|
|
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.
To read it back:
|
|||||||||
|
|
The best way is:
|
|||||||||||||||||||
|
|
Yet another way. Serialize to json using simplejson (included as json in python 2.6):
If you examine output.txt:
This is useful because the syntax is pythonic, it's human readable, and it can be read by other programs in other languages. |
|||
|
|
|
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:
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 Drop the square brackets (equivalent to removing the wrapping
This generator will create newline-terminated representation of your
This avoids memory issues, such as:
(I triggered this error by limiting Python's max. virtual memory to ~100MB with Putting memory usage to one side, this method isn't actually any faster than the original:
(Python 2.6.2 on Linux) |
|||
|
|
|
|||
|
|
Using Python 3 syntax:
This is platform-independent. |
||||
|
|
In GeneralFollowing is the syntax for writelines() method
Example
Reference |
|||
|
|
|
Let avg be the list, then:
You can use |
||||
|
|
|
You have an unsorted list of files stacked one each above other. Write the following fuctions:
|
||||
|
|
writelinesdoesn't add newlines because it mirrorsreadlines, which also doesn't remove them. – TokenMacGuy Sep 7 '11 at 4:27