python check for empty text files code example
Example 1: python empty text file
open('file.txt', 'w').close()
Example 2: 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')