I have a dictionary A containing day as a key, and list of strings as a values example:
A = {"day1": ['A', 'B', 'C']}.
How can I create a List B containing the unique relationships that will be established Lists?
B = [['A','B'], ['A','C'], ['B','C']]