'x = df.loc[df['City'].isnull()] & df.loc[df['Latitude']== 0]'
The error message is "unsupported operand type(s) for |: 'float' and 'bool'"
x = df.loc[df['City'].isnull()] and df.loc[df['Latitude']== 0]
The error message is "The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all()"
how I can multiple conditions on Dataframe then remove these rows? Thank you