W3docs

Correct way to write line to file?

The correct way to write a line to a file in Python is to use the write() method on the file object, followed by the line you want to write.

Tags

The correct way to write a line to a file in Python is to use the write() method on the file object, followed by the line you want to write. Here is an example:

Write a line to a file in Python using write method

with open("example.txt", "w") as file:
    file.write("This is a line in the file.")

<div class="alert alert-info flex not-prose"> Watch a course <span class="hidden md:block">Watch a video course </span> Python - The Practical Guide</div>

You can also use the writelines() method to write multiple lines at once.

Write multiple lines to a file in Python using writelines method

with open("example.txt", "w") as file:
    lines = ["This is the first line.\n", "This is the second line.\n"]
    file.writelines(lines)

Make sure to close the file after you finish writing by using 'with' statement, it automatically close the file after it's done writing.