标签: python select pandas
我想做与此相反的事情:
data[data.ip.str.contains(':')]
有什么想法吗?
答案 0 :(得分:2)
使用~字符,如下所示:
~
data[~data.ip.str.contains(':')]