“pitón isnumérico” Código de respuesta

pitón isnumérico

str.isnumeric()
str = u"this2009";  
print str.isnumeric()
> False
str = u"23443434";
print str.isnumeric()
> True
Dentedghost

nonotin 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

Respuestas similares a “pitón isnumérico”

Preguntas similares a “pitón isnumérico”

Más respuestas relacionadas con “pitón isnumérico” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código