delet text in txt python 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 all data from file
file = open("sample.txt","r+")
file.truncate(0)
file.close()