open w+ python clear file code example
Example 1: clearing all text from a file in python
fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()
Example 2: python delete contents of file
open('file.txt', 'w').close()