Is there any pythonic way to find out this?
dic1 = {'a': 1, 'b': 2, 'points': 100}
dic2 = {'a': 10, 'b': 20, 'points': 100}
---> Ture # because points in dic1 and dic2 are equal
and also
dic1 = {'a': 1, 'b': 2, 'points': 200}
dic2 = {'a': 10, 'b': 20, 'points': 100}
---> False # because points in dic1 and dic2 are not equal