Instead of this
df3 = result[result['Value'] ! <= 10]
Use
df3 = result[~(result['Value'] <= 10)]
It will work.
OR simply use
df3 = result[result['Value'] > 10]
Instead of this
df3 = result[result['Value'] ! <= 10]
Use
df3 = result[~(result['Value'] <= 10)]
It will work.
OR simply use
df3 = result[result['Value'] > 10]