How to know if lists inside list contain the same elements

Is there a way to know if the lists inside a list contain the same elements with python?

For example:

Return True if given list [['A', 'B'], ['A', 'B'], ['A', 'B']] or False if given list [['B', 'C'], ['Z', 'C']]