Answers for "python delete text file content"

10

python delete contents of file

f = open('file.txt', 'r+')
f.truncate(0)
Posted by: Guest on February-22-2020
2

python delete text in text file

# Delete all text in a text file
f = open("text_file.txt", "r+")
f.truncate(0)
f.close()
Posted by: Guest on April-30-2021
3

python delete contents of file

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

Code answers related to "python delete text file content"

Python Answers by Framework

Browse Popular Code Answers by Language