Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python File Write

f = open("demofile3.txt", "w")
f.write("Woops! I have deleted the content!")
f.close()

#open and read the file after the appending:
f = open("demofile3.txt", "r")
print(f.read())
Source by www.codegrepper.com #
 
PREVIOUS NEXT
Tagged: #Python #File #Write
ADD COMMENT
Topic
Name
8+5 =