How to check a value in the list is not equal. Want to check the values that are in the list. between two items, for example, if listA does not have any of the same items as in listB removing that item
listA = [0, 1, 2, 3]
listB = [2, 3]
Result = [2, 3]