the dataframe has age column. I want to select only those btw 0 and 100.
usually I do this, first select < 100 then select > 0:
df_clients = df_clients[df_clients['age'] <100)
df_clients = df_clients[df_clients['age']> 0]
The other way is this:
df_clients = df_clients[(df_clients['age'] <100) & (df_clients['age']> 0)]
How to do this with 'and' or '&&' - double && ?