I have data
event_address event_time
0 https://mail.yandex.ru/clck=2230&uid=1189231... 2016-06-14 03:05:19
1 https://mail.yandex.ru/?ncrnd=2230&uid=1189231... 2016-06-14 03:05:23
2 https://mail.yandex.ru/clck=2230&uid=1189231... 2016-06-14 03:05:24
3 http://mail.yandex.ru/?win=219&clid=2257587-216 2016-06-14 03:04:52
4 https://mail.yandex.ru/?win=219&clid=2257587-216 2016-06-14 03:04:52
5 https://mail.yandex.ru/?ncrnd=2230 2016-06-14 03:05:12
6 https://mail.yandex.ru/?ncrnd=2230&uid=1189231... 2016-06-14 03:05:25
I want to delete str, where url contain yandex.ru/clck.
Desire output
event_address event_time
1 https://mail.yandex.ru/?ncrnd=2230&uid=1189231... 2016-06-14 03:05:23
3 http://mail.yandex.ru/?win=219&clid=2257587-216 2016-06-14 03:04:52
4 https://mail.yandex.ru/?win=219&clid=2257587-216 2016-06-14 03:04:52
5 https://mail.yandex.ru/?ncrnd=2230 2016-06-14 03:05:12
6 https://mail.yandex.ru/?ncrnd=2230&uid=1189231... 2016-06-14 03:05:25
I try use ~df[df.event_address.str.contains("yandex.ru/clck")]but it return
TypeError: bad operand type for unary ~: 'unicode'
~at the right place.