Hi,
I am a beginner in Python and was facing some issues with the topic frozenset() in Python, I also referred here but couldn't get what I was looking for and am still confused with this - I have a frozenset A and list B:
>>> a=frozenset(['A','B'])
>>> b=[('A','B'),('C',)]
>>> a in b
False #...