Answers for "clearing a text file in python"

10

python delete contents of file

f = open('file.txt', 'r+')
f.truncate(0)
Posted by: Guest on February-22-2020
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
3

python delete contents of file

open('file.txt', 'w').close()
Posted by: Guest on February-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language