I have a dataframe df that has two columns consisting of bools.
df['trial']
df['subscribe']
I want to create a new column df['without_trial'] that is true when df['subscribe'] is true and df['trial'] is false, and false otherwise.
How can I do that? I have tried with the df.loc but it never gives me the right values.