About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
stefanuddenberg
4/18/2020 - 11:44 PM
share
Share
add_circle_outline
Save
Itertools -- Get combinations of two lists (product)
product.py
content_copy
file_download
from itertools import product a = [1, 2, 3] b = ["a", "b"] print list(product(a, b))
clear