A = [a,b,c,d]B = [1,2,3,4]C = [6,7,8,9]for s in itertools.product(A,B,C)
print s#问题,我想在输出S的同时,获取到s在原A,B,C中的下标值
ITMISS
相关分类