python - 如何获取矩形中的坐标?

时间:2018-05-18 04:47:23

标签: python python-3.x

给出一个x列表和一个y列表。我怎样才能获得所有可能的坐标?

例如,

input x=[1,2] y=[2,3,6]

然后我想得到

output [(1,2),(1,3),(1,6),(2,2),(2,3),(2,6)]

我可以使用哪种功能或模块来获得此输出?

1 个答案:

答案 0 :(得分:0)

您想要itertools.product

import itertools as it
>>> list(it.product(x,y))
[(1, 2), (1, 3), (1, 6), (2, 2), (2, 3), (2, 6)]