文章详情页
python - 所有可能的排列组合问题
浏览:144日期:2022-07-21 09:22:02
问题描述
暂且理解为一个字符串中字母的所有组合方法,如下,暴力而又丑陋的穷举法。。。想请教下有没有什么更好的方法,itertools中的几种方法都试过了,没有符合我想要的方法,谢谢!
base=’ATCG’list=[]for i in base: for j in base:for k in base: for m in base:for l in base: for n in base:seq=i+j+k+m+l+nlist.append(seq)print(len(set(list)))4096
问题解答
回答1:# coding: utf8from itertools import productbase = ’ATCG’result = product(base, repeat=6) # 因为内容太多, 所以返回生成器, 可以用list方法使其变成列表print(len(set(result)))# --- 结果 ----4096回答2:
import itertoolslen(list(itertools.product(base, repeat=6)))回答3:
from itertools import productprint(list(map(''.join, product('ATCG', repeat=6))))
相关文章:
1. docker镜像push报错2. docker-machine添加一个已有的docker主机问题3. node.js - node exec 执行没反应4. javascript - 使用 hotcss 用rem换出来的圆不圆5. mac里的docker如何命令行开启呢?6. 关于docker下的nginx压力测试7. angular.js - angularjs的自定义过滤器如何给文字加颜色?8. dockerfile - 我用docker build的时候出现下边问题 麻烦帮我看一下9. angular.js - 指令下的指令 面对上级指令ng-repeat的时候 ng-controller会出现多次的问题?10. dockerfile - 为什么docker容器启动不了?
排行榜

网公网安备