python clear file before writing code example
Example 1: python delete contents of file
f = open('file.txt', 'r+')
f.truncate(0)
Example 2: python delete contents of file
open('file.txt', 'w').close()
Example 3: python clear file before writing
file = open("sample.txt","w")
file.close()