“Python не в списке” Ответ

Панды не в списке

>>> df
  countries
0        US
1        UK
2   Germany
3     China
>>> countries
['UK', 'China']
>>> df.countries.isin(countries)
0    False
1     True
2    False
3     True
Name: countries, dtype: bool
>>> df[df.countries.isin(countries)]
  countries
1        UK
3     China
>>> df[~df.countries.isin(countries)]
  countries
0        US
2   Germany
Hambo

Python не в списке

>>> 3 not in [2, 3, 4]
False
>>> 3 not in [4, 5, 6]
True
Shy Stag

Ответы похожие на “Python не в списке”

Вопросы похожие на “Python не в списке”

Больше похожих ответов на “Python не в списке” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования