kinda random but does anyone know a fast way to go through a csv file and delete every row with an empty cell? the file has like 2,500 rows i don't wanna have to do it manually

disabled chimera thing
unabashedly weird & kinky
doing its best
owner π
kinda random but does anyone know a fast way to go through a csv file and delete every row with an empty cell? the file has like 2,500 rows i don't wanna have to do it manually
Ayup. Python + Pandas should be able to do it in a few lines of code (probably just import csv to dataframe, map a lambda across it to generate a true/false value for existence of an empty cell, then index by that array, then re-export). I'm on mobile rn but if you want a snippet I could totally toss one together
thank u! i'll try this if the regex method doesn't work, that way seems way simpler for my one-time use case