delete text in a file python code example Example: how to delete everything on a file python f = open('file.txt', 'r+') f.truncate(0) # need '0' when using r+