Answers for "python empty file"

6

python os make empty file

open(x, 'a').close()
Posted by: Guest on May-12-2020
4

python check if a file is empty

import os
if os.stat("yourfile.extension").st_size == 0:
#note: file has to be in same directory as python script#
  print('empty')
Posted by: Guest on August-09-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