Answers for "How to delete the contant of the file in 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

Code answers related to "How to delete the contant of the file in Python"

Python Answers by Framework

Browse Popular Code Answers by Language