w3resource

Python File I/O: Write a List content to a file

Python File I/O: Exercise-12 with Solution

Write a Python program to write a list content to a file.

Sample Solution:-

Python Code:

color = ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow']
with open('abc.txt', "w") as myfile:
        for c in color:
                myfile.write("%s\n" % c)

content = open('abc.txt')
print(content.read())

Sample Output:

Red                                                                                                           
Green                                                                                                         
White                                                                                                         
Black                                                                                                         
Pink                                                                                                          
Yellow

Flowchart:

Flowchart: File I/O: Write a List content to a file.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to get the file size of a plain file.
Next: Write a Python program to copy the contents of a file to another file .

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/file/python-io-exercise-12.php