2014年5月16日 星期五

Python 列出所有組合


>>> list(itertools.combinations(range(1, 5), 2))
[(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]

沒有留言:

張貼留言