Answers for "python write to a text file line by line"

41

python read file line by line

with open("file.txt") as file_in:
    lines = []
    for line in file_in:
        lines.append(line)
Posted by: Guest on March-03-2020
0

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

# Program to write to text file using write() function
with  open("python.txt", "w") as file:
	content = "Hello, Welcome to Python Tutorial !! 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 "python write to a text file line by line"

Python Answers by Framework

Browse Popular Code Answers by Language