Pandas Drop Rows avec liste vide
# Drop all rows that have an empty list in "example_column"
df[df['example_column'].map(lambda d: len(d)) > 0]
Important Ibex
# Drop all rows that have an empty list in "example_column"
df[df['example_column'].map(lambda d: len(d)) > 0]