Reading files is cool and all, but writing to files is a whole lot more fun. It also should instill a sense of danger in you because you can overwrite content and lose everything in just a moment. Despite the threat of danger, we press on. Python makes writing to files very simple. With somewhat similar methods to reading, writing has primarily 2 methods for writing. Let’s get to it!
Warning! The Evil “w” in the Open Method
…And whoops! There goes our content. As I said, we are in dangerous water here friends. As soon as you place “w” as the second argument, you are basically telling Python to nuke the current file. Now that we have nuked our file, let’s try rebuilding it.
If you were continuing from the last tutorial, we just rewrote the contents that we deleted to the file. However, you might be flipping out screaming, “but it’s not the same!” You are 100% correct my friend. Hit the control key a couple of times and cool off, I’ll show you the fix in a minute. Ultimately, the write() method is really easy. You just pass a string into it (or a string variable) and it will write it to the file following that one way process it does. We also noticed that it kept writing without using any line breaks. Let’s use another method to fix this.
Writing Lines to a File
We have the a fairly easy solution of just putting a new line character “\n” at the end of each string like this:
It’s just a simple text formatting character. Yes, even text files have a special formatting similar to how HTML documents have their own special formatting. Text files are just much more limited than HTML.
Appending to a File
Boom! While our text file makes absolutely no sense to a human, we both know we just had a big victory. The only big change here is in the open() method. We now have an “a” (for append) instead of the “w”. Appending is really just that simple. Now go out there and write all over the world my friend.
i get this “todo; haven’t implemented non-read opens” when i implement in the code simulator.
the code im running:
f = open(“output.txt”, “a”)
f.write(“hi there
“)
f.close()
Barak just open it with append and change the line to ” ”
like so:
f = open(“test.txt”,”a”)
f.write(“”)[the line number you want]
f.close()
#enjoy 🙂
~Mr Guru
Is it possible to write variables to a txt file? For example, if I had name = input(“Enter your name: “)
and the user entered their name, would I be able to write that to a txt file? And if so, how?
great
how we delete line?
Hey, brilliant stuff! Very easy to follow tutorials so far!
Nice basic tutorials …fun indeed
Very cool. I like the presentation and layout. Much obliged.