“isnotin python” Kode Jawaban

panda tidak ada dalam daftar

>>> 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

isnotin python

import pandas as pd

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

Jawaban yang mirip dengan “isnotin python”

Pertanyaan yang mirip dengan “isnotin python”

Lebih banyak jawaban terkait untuk “isnotin python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya