Answers for "write into txt file python line in lin"

3

python writeline file

f = open("test.txt", "w")
f.writelines(["Hello", "World"])
f.close
Posted by: Guest on May-16-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

Python Answers by Framework

Browse Popular Code Answers by Language