Skip to content
Advertisement

How to zip together lists of unequal length into a dictionary?

I have three lists.

JavaScript

I’d like to make these lists into a dataframe in which each row is the author paired with each coauthor and the frequency of collaborations. Basically if I could zip these three lists together, with the list ‘author’ replicated over and over in each row, this would be great.

This seems like a fairly simple pandas task… but I’d love some help on it!

Advertisement

Answer

You can do this with nested for loop, looping over the authors and the zipped coauthors and frequencies. Like so:

JavaScript

With Output:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement