empty text file python code example
Example 1: python empty text file
open('file.txt', 'w').close()
Example 2: python delete contents of file
f = open('file.txt', 'r+')
f.truncate(0)
Example 3: clearing all text from a file in python
fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()
Example 4: how to empty a text file in python
file = open("sample.txt","r+")
file.truncate(0)
file.close()