Python überprüfen, ob die Datei Inhalte enthält

>>> import os
>>> os.stat("file").st_size == 0
True
Fancy Flatworm