Answers for "empty out the file in python"

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
3

python empty text file

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

Python Answers by Framework

Browse Popular Code Answers by Language