Borrar todo el texto de un archivo en Python
fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()
Envious Emu
fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()
f = open('file.txt', 'r+')
f.truncate(0) # need '0' when using r+