My dataframe is as below
df
time home_team away_team full_time_result both_teams_to_score double_chance League
-- ------------------- ------------ ------------------ --------------------------------- ------------------------- ------------------------------------ ----------------
0 2021-01-08 19:45:00 Charlton Accrington Stanley {'1': 2370, 'X': 3400, '2': 3000} {'yes': 1900, 'no': 1900} {'1X': 1360, '12': 1300, '2X': 1530} England League 1
1 2021-01-09 12:30:00 Lincoln City Peterborough {'1': 2290, 'X': 3400, '2': 3100} {'yes': 1800, 'no': 1950} {'1X': 1360, '12': 1300, '2X': 1570} England League 1
2 2021-01-09 13:00:00 Gillingham Burton Albion {'1': 2200, 'X': 3400, '2': 3300} {'yes': 1700, 'no': 2040} {'1X': 1330, '12': 1300, '2X': 1610} England League 1
3 2021-01-09 17:30:00 Ipswich Swindon {'1': None, 'X': None, '2': None} {'yes': 1750, 'no': 2000} {'1X': 1220, '12': 1250, '2X': 1900} England League 1
How can I delete row containing None? as in this example in col full_time_result
I want to delete the row {'1': None, 'X': None, '2': None}
Thanks