Writing a whole list AS SUCH to a text file in Python

803 Views Asked by At

In python I don't want to write every single element into a file but a whole list as such. That means the text file should look like this for example:

["elem1", "elem2", "elem3"]
["elem1", "elem2", "elem3"]
["elem1", "elem2", "elem3"]

This is one examples to write each element from a list into a text file (Writing a list to a file with Python). But I don't need this, as I said.

Can anyone help me?

3

There are 3 best solutions below

0
On BEST ANSWER

Here are three ways:

import json


l = ["elem1", "elem2", "elem3"]
print(str(l))
print(repr(l))
print(json.dumps(l))

Prints:

['elem1', 'elem2', 'elem3']
['elem1', 'elem2', 'elem3']
["elem1", "elem2", "elem3"]

You can, of course, direct your print statement to an output file.

2
On

Updated from original answer using list.__str__()

You can achieve this by making use of str() as below.

l = [1, 'this', 'is', 'a', 'list']

with open('example.txt', 'w') as f:
    f.write(str(l))

Contents of example.txt

[1, 'this', 'is', 'a', 'list']
1
On

You can try like this:

with open('FILE.txt', 'w+') as f:
    f.write(myList.__str__())