I know you can take the pairwise cross product of lists in the ways posted here: Pairwise crossproduct in Python
but I want to take a list L and a positive integer n and return the cross-product of L with itself n times. Is there a built in way to do this or will I just have to iterate the pairwise cross-product?
(or "cartesian product" for those who only use the sacred terminology handed down to them by their all-mighty high school math teacher...)