Im new to python and came across a code snippet.
df = df[~df[\'InvoiceNo\'].str.contains(\'C\')]
Would be much obliged if I could know what
It's used to invert boolean Series, see pandas-doc.