I want to join two lists of dictionaries on a single key, and I saw the following answer to use zip_longest
in Python 3.5+. In my case is the same as the question join two lists of dictionaries on a single key.
However, I failed to find how efficient is this method. If I'll use it for long lists, should it work well?