Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
580 views
in Technique[技术] by (71.8m points)

python - Permutations of a list of lists

I have a list like this:

l = [['a', 'b', 'c'], ['a', 'b'], ['g', 'h', 'r', 'w']]

I want to pick an element from each list and combine them to be a string.

For example: 'aag', 'aah', 'aar', 'aaw', 'abg', 'abh' ....

However, the length of the list l and the length of each inner list are all unknown before the program is running. So how can I do want I want?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Take a previous solution and use itertools.product(*l) instead.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...