Effacer tout le texte à partir d'un fichier dans 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+