Answers for "open w+ python clear 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
3

python delete contents of file

open('file.txt', 'w').close()
Posted by: Guest on February-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language