Python list内元素生成新的组合怎么写,pythonlist,比如l = [1,2,3
Python list内元素生成新的组合怎么写,pythonlist,比如l = [1,2,3
比如l = [1,2,3]
指定长度2,就会得到[1,2][2,3][1,3],不考虑顺序。
生成排列可以用product:
from itertools import productl = [1, 2, 3]print list(product(l, l))print list(product(l, repeat=4))
组合的话可以用combinations:
from itertools import combinationsprint list(combinations([1,2,3,4,5], 3))
下面是我以为没有combinations然后自己写的,没有itertools的python(2.6以下)可供参考。
import copydef combine(l, n): answers = [] one = [0] * n def next_c(li = 0, ni = 0): if ni == n: answers.append(copy.copy(one)) return for lj in xrange(li, len(l)): one[ni] = l[lj] next_c(lj + 1, ni + 1) next_c() return answersprint combine([1, 2, 3, 4, 5], 3)
输出:
[[1, 2, 3], [1, 2, 4], [1, 2, 5], [1, 3, 4], [1, 3, 5], [1, 4, 5], [2, 3, 4], [2, 3, 5], [2, 4, 5], [3, 4, 5]]
编橙之家文章,
相关内容
- Python静态存储文章页求教问题,python静态,Python新手,
- webui界面出现乱码是什么原因?pyspider已经安装,webuipy
- PyQt怎么操作可以完成不同界面间的切换操作,pyqt界面
- Python tornado方法access日志输出及分割问题求助,pythont
- Python字典排序要将dict按value排序源码怎么写,pythondic
- Python发送信息至TCP客户端服务器不能正常输出问题,
- Python Scrapy重写函数调用不成功,有源码求分析,pythons
- pyhton2.7 sublime text2配置 OS X环境,pyhton2.7sublime,在谷歌看
- Python如何求N维点集的中点方法,pythonn维中点,rectangle
- Django不修改源码如何扩展User model字段,djangomodel,默认情
评论关闭