This is the Table I am working with
I need to access the data points with 'Duration'>70 and 'End Terminal'==10 Hence I tried
kj[kj['Duration']>70]
kj[kj['End Terminal'] == 10]
above commands are working fine separately but when I club them as:
kj[kj['End Terminal'] == 10] & kj[kj['Duration']>70]
there is an error, hence how to use both conditions in one statement in Pandas-Python