0
I have a question to configure the filters "e"
and "ou"
in the pandas.
Example: A column with the following col1 values (yes, no, maybe)
to get the yes OK
df[df['col1']=='sim']
Now, to catch:
yes or no
yes and no
yes and yes
How would you do?