python writeline file
f = open("test.txt", "w")
f.writelines(["Hello", "World"])
f.close
python writeline file
f = open("test.txt", "w")
f.writelines(["Hello", "World"])
f.close
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()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us