Answers for "value contains pandas"

11

dataframe column contains string

df[df['A'].str.contains("hello")]
Posted by: Guest on September-28-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language