First page Back Continue Last page Overview Image

isnull und notnull

>>> print(my_city_series.isnull())

London False

Paris False

Zurich True

Berlin False

Stuttgart True

Hamburg True

dtype: bool

>>> print(my_city_series.notnull())

London True

Paris True

Zurich False

Berlin True

Stuttgart False

Hamburg False

dtype: bool