Answers for "remove all text from a text document python"

7

clearing all text from a file in python

fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()
Posted by: Guest on September-10-2020
5

how to delete everything on a file python

f = open('file.txt', 'r+')
f.truncate(0) # need '0' when using r+
Posted by: Guest on March-24-2020

Code answers related to "remove all text from a text document python"

Python Answers by Framework

Browse Popular Code Answers by Language