condition in dataframe python code example

Example 1: or condition in pandas

df2 = df[(df.a != -1) | (df.b != -1)]

Example 2: or condition in pandas

df1 = df[(df.a != -1) & (df.b != -1)]

Example 3: if condition dataframe python

df.loc[df['age1'] - df['age2'] > 0, 'diff'] = df['age1'] - df['age2']

Example 4: conditions in pandas dataframe

from pandas import DataFrame
  
names = {'First_name': ['Hanah', 'Ria', 'Jay', 'Bholu', 'Sachin']}
df = DataFrame(names, columns =['First_name'])
  
df['Status'] = df['First_name'].apply(lambda x: 'Found' if x == 'Ria' else 'Not Found')
  
print (df)