作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<分区>
Possible Duplicate:
Get the cartesian product of a series of lists in Python
我正在尝试找出一些我无法理解的逻辑。假设我有以下数据结构:
letters = (
('b','c'),
('a','e','ee'),
('d','f'),
('e','y'),
)
我将如何遍历它以获得所有可能的字符串组合:
bade
cade
bede
cede
beede
ceede
bafe
cafe
befe
cefe
beefe
ceefe
bady
cady
bedy
cedy
beedy
ceedy
bafy
cafy
befy
cefy
beefy
ceefy
我是一名优秀的程序员,十分优秀!