“~ ”在pands中表示否定的意思。
In[1]:s = pd.Series(range(-3, 4))
Out[1]: s
0 -3
1 -2
2 -1
3 0
4 1
5 2
6 3
In[2]:s[~(s < 0)]
Out[2]:
3 0
4 1
5 2
6 3
dtype: int64
其它:
| for or, & for and
参考:Boolean Indexing,https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html