Pandas Set Column to Value Using Mask

df['Event'] = np.where((df.Event == 'Painting'),'Art',df.Event)
df
Real Raccoon