how to delete the contents of a file in python code example
Example 1: python delete contents of file
f = open('file.txt', 'r+')
f.truncate(0)
Example 2: python delete all data from file
file = open("sample.txt","r+")
file.truncate(0)
file.close()