Skip to content
Advertisement

how to return None for empty array in python?

I have a dataframe with two columns. Column one contains an integer, the second column a list with multiple items, which also can be empty. I want to return a list with tuples, in which the first part of the tuple is the integer from col1, and the second part of the tuple is the integer from col2, listing in total all possible outcomes. Input:

JavaScript

desired output:

JavaScript

So far, I have these, but it only outputs tuples for non empty inputs.

JavaScript
JavaScript

Advertisement

Answer

One quick and dirty fix, turning the second loop into a normal for-each loop:

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