python write lines to text file code example
Example 1: python write to file
file = open(“testfile.txt”,”w”)
file.write(“Hello World”)
file.write(“This is our new text file”)
file.write(“and this is another line.”)
file.write(“Why? Because we can.”)
file.close()
Example 2: python writeline file
f = open("test.txt", "w")
f.writelines(["Hello", "World"])
f.close
Example 3: python write to file
with open("xyz.txt", "w") as file:
file.write("xyz")
f= open("xyz.txt", "w")
f.write("hello")
f.close()
Example 4: new line python write to file
hs.write(name + "\n")