Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 482 Bytes

85.md

File metadata and controls

27 lines (21 loc) · 482 Bytes
@author jackzhenguo
@desc 
@date 2019/5/5

85 product 案例

def product(*args, repeat=1):
    pools = [tuple(pool) for pool in args] * repeat
    result = [[]]
    for pool in pools:
        result = [x+[y] for x in result for y in pool]
    for prod in result:
        yield tuple(prod)

调用函数:

rtn = product('xyz', '12', repeat=3)
print(list(rtn))
[上一个例子](84.md) [下一个例子](86.md)