Answers for "python file wipe"

5

how to delete everything on a file python

f = open('file.txt', 'r+')
f.truncate(0) # need '0' when using r+
Posted by: Guest on March-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language