Answers for "append a line to a file"

12

append a line to a text file python

# Open a file with access mode 'a'
file_object = open('sample.txt', 'a')
 
# Append 'hello' at the end of file
file_object.write('hello')
 
# Close the file
file_object.close()
Posted by: Guest on March-18-2020
0

Append a line to a text file using the write() function

# Program to append to text file using write() function
with  open("python.txt", "a") as file:
	content = "Append the content at the end n"
	file.write(content)
	file.close()


# Program to read the entire file (absolute path) using read() function
with open("C:/Projects/Tryouts/python.txt", "r") as file:
	content = file.read()
	print(content)
	file.close()
Posted by: Guest on September-25-2021

Code answers related to "append a line to a file"

Python Answers by Framework

Browse Popular Code Answers by Language