Answers for "writing data to a file in python"

73

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() 
Posted by: Guest on December-09-2019
0

how to file in python

Simple way to get a directory of a file and open it:
  
from tkinter.filedialog import askopenfilename

filename = askopenfilename()
Posted by: Guest on March-09-2021

Code answers related to "writing data to a file in python"

Python Answers by Framework

Browse Popular Code Answers by Language