how to delete a rows if a column contains specific text/value in pandas code example
Example 1: delete rows with value in column pandas
df = df[df.line_race != 0]
Example 2: removing rows with specific column values from a dataframe
+---+--------------------------+----------------------------------+-----------+
| 1 | Sign up date | no_stores | no_unin_app no_stores_recei | ed_order |
+---+--------------------------+----------------------------------+-----------+
| 2 | 2020-04-01 | 1 | 0 | 0 |
| 3 | 2020-04-04 | 11 | 3 | 6 |
| 4 | 2020-04-13 | 8 | 1 | 4 |
+---+--------------------------+----------------------------------+-----------+