Asterisk in function call
I’m using itertools.chain to “flatten” a list of lists in this fashion: uniqueCrossTabs = list(itertools.chain(*uniqueCrossTabs)) how is this different than saying: uniqueCrossTabs = list(itertools.chain(uniqueCrossTabs)) Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If … Read more