1
I would like to know how to delete lines from a dataframe based on the accuracy of the values of a column and a list. For example:
df:
cod letra
101 a
202 b
303 c
404 d
505 e
lista = list([202,505])
The result I expect is:
df_saida:
cod letra
101 a
303 c
404 d