How to create N-tuples in Python?
问题 What would be the easiest way to create a list of n-tuples in Python? For example, if I want to create for a number n (for e.g. 3): I'd want to generate the following set of tuples: (1,1,1) (1,1,2) (1,1,3) (2,1,1) (2,1,2) (2,1,3) (3,1,1) (3,1,2) (3,1,3) (1,2,1) (1,2,2) (1,2,3) (2,2,1) (2,2,2) (2,2,3) (3,2,1) (3,2,2) (3,2,3) (1,3,1) (1,3,2) (1,3,3) (2,3,1) (2,3,2) (2,3,3) (3,3,1) (3,3,2) (3,3,3) 回答1: Use itertools.product: >>> from itertools import product >>> list(product(range(1, 4), repeat