79134085

Date: 2024-10-28 15:39:54
Score: 0.5
Natty:
Report link

Similar to the accepted answer, you can also use inverted pd.Series.between to get the same result.

Test = df[~df['QC 1'].between(40, 100)]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: amance