Answers for "python empty file content"

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
0

how to empty a text file in python

file = open("sample.txt","r+")
file.truncate(0)
file.close()
Posted by: Guest on June-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language