toolz

How to write this python snippet in functional programming style?

How to write this python snippet in functional programming style? Question: How can I write the line below in functional python using e.g. toolz? dct1 = {1: 1, 2: 2} dct2 = {2:2} dct3 = {2:2, 3:3} common_keys = set(dct1.keys()) & set(dct2.keys()) & set(dct3.keys()) Asked By: gebbissimo || Source Answers: Actualy your question is very …

Total answers: 3