• 技术文章 >常见问题 >Python常见问题

    Python能实现排列组合算法吗?

    PythonPython2019-06-26 11:32:38原创5802
    python 2.6 引入了itertools模块,使得排列组合的实现非常简单:

    代码如下:

    import itertools

    有序排列:e.g., 4个数内选2个排列:

    代码如下:

    >>> print list(itertools.permutations([1,2,3,4],2))
    [(1, 2), (1, 3), (1, 4), (2, 1), (2, 3), (2, 4), (3, 1), (3, 2), (3, 4), (4, 1), (4, 2), (4, 3)]

    无序组合:e.g.,4个数内选2个:

    代码如下:

    >>> print list(itertools.combinations([1,2,3,4],2))
    [(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]
    专题推荐:python
    上一篇:Python如何读写配置文件? 下一篇:一文了解python编程的开发机制

    相关文章推荐

    • Python实现的简易FTP• Python的logging日志模块怎么用?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网