Modules:
list_product()
Profiling:
Versions:
Links:
>>> l = [[1,2],[3,4]] >>> list(list_product(l)) [(1, 3), (1, 4), (2, 3), (2, 4)]