I am trying to achieve the following:
I have two list with the same values.
a = ["A","B","C"]
b = ["A","B","C"]
I want to create pairs by crossing them, but removing identical values as below.
OUT = [("A","B"),("A","C"),("B","C")]
Is there any easy solution?
Thank you very much in advance.