zoukankan      html  css  js  c++  java
  • Python中的itertools.product

    product(A, B)函数,返回A、B中的元素的笛卡尔积的元组。例如

    >>> import itertools
    >>> itertools.product([1,2,3],[100,200])
    <itertools.product object at 0x7f3e6dd7bc80>
    >>> for item in itertools.product([1,2,3],[100,200]):
    ... print item
    ...
    (1, 100)
    (1, 200)
    (2, 100)
    (2, 200)
    (3, 100)
    (3, 200)
    product(list1, list2) 依次取出list1中的每1个元素,与list2中的每1个元素,组成元组,
    然后,将所有的元组组成一个列表,返回。

  • 相关阅读:
    C语言I博客作业09
    C语言I博客作业08
    14
    13
    12
    11
    10
    9
    8
    7
  • 原文地址:https://www.cnblogs.com/liunaiming/p/12064064.html
Copyright © 2011-2022 走看看