标签: python python-3.x printing
from itertools import product A=((1,2),(3,4)) B= list(product(*A)) print (B)
我的输出是
[(1, 3), (1, 4), (2, 3), (2, 4)]
但我想要我的输出
(1, 3) (1, 4) (2, 3) (2, 4)
答案 0 :(得分:1)
只需使用:
print (*B)
输出: