supprimer les lignes vides du fichier python
with open("new_file","r") as f:
for i in f.readlines():
if not i.strip():
continue
if i:
print i,
Dead Dog