Answers for "python delete all text in a file"

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
2

python delete text in text file

# Delete all text in a text file
f = open("text_file.txt", "r+")
f.truncate(0)
f.close()
Posted by: Guest on April-30-2021

Code answers related to "python delete all text in a file"

Python Answers by Framework

Browse Popular Code Answers by Language