Answers for "check if value is in series pandas"

1

check if value is in series pandas

In [21]: s.unique()
Out[21]: array(['a', 'b', 'c'], dtype=object)

In [22]: 'a' in s.unique()
Out[22]: True
Posted by: Guest on May-12-2020

Code answers related to "check if value is in series pandas"

Python Answers by Framework

Browse Popular Code Answers by Language