I am performing a list operation as below in python ,it works fine but the order of elements get sorted ,ideally I want the elements order in LISTC to be the same as in LISTA removing the elements from LISTB?how can I do that?
LISTC = list(set(LISTA) - set(LISTB))