python - >数字和字母的组合

时间:2011-01-18 02:05:53

标签: python arrays string random choice

#!/usr/bin/python
import random
lower_a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
upper_a = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']

all = []
all = " ".join("".join(lower_a) + "".join(upper_a) + "".join(num))
all = all.split()
x = 1
c = 1
while x < 10:
        y = []
        for i in range(c):
                a = random.choice(all)
                y.append(a)
        print "".join(y)
        x += 1
        c += 1

我现在输出的内容如下:

5
hE
HAy
1kgy
Pt6JM
2pFuCb
Jv5osaX
5q8PwWAO
SvHWRKfI5

如何让它系统地遍历给定长度的每个字母组合(大写和小写),然后在该长度上加1并重复该过程?

4 个答案:

答案 0 :(得分:5)

最好不要重新创建标准库中已有的功能。

看一下标准库模块“itertools”。

特别是combination(),permutations()和product()函数。

import itertools

lower_a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
upper_a = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']

all = []
all = lower_a + upper_a + num

for r in range(1, 3):
    for s in itertools.product(all, repeat=r):
         print ''.join(s)

如果您的Python版本较旧,则可能无法访问这些功能。但是,如果您查看Python 2.6的文档,您可以看到如何在Python中实现所有这些函数。例如,itertools.product的实现如下:

def product(*args, **kwds):
    # product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
    # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
    pools = map(tuple, args) * kwds.get('repeat', 1)
    result = [[]]
    for pool in pools:
        result = [x+[y] for x in result for y in pool]
    for prod in result:
        yield tuple(prod)

您也可以尝试使用递归解决方案:

lower_a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
upper_a = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']

all = []
all = lower_a + upper_a + num

def recursive_product(myList, length, myString = ""):
    if length == 0:
        print myString
        return
    for c in myList:
        recursive_product(myList, length-1, myString + c)

for r in range(1, 3):
    recursive_product(all, r)

答案 1 :(得分:1)

pythonic方式;)

打印所有组合:


from itertools import combinations

symbols = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
          "abcdefghijklmnopqrstuvwxyz"
          "0123456789"
max_length = len(symbols)

for length in xrange(1, max_length + 1):
    for word in map(''.join, combinations(symbols, length)):
        print word

更好的是,创建一个生成组合的生成器对象,以便以后可以决定如何处理它们,而不必在内存中存储2 ** 62个字符串(7.6040173890593902e+35个字节)。


from itertools import combinations, product

symbols = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
          "abcdefghijklmnopqrstuvwxyz"
          "0123456789"
max_length = len(symbols)

# generator of all combinations
def words1(chars=symbols, max_len=max_length):
    for length in xrange(1, max_length + 1):
        for word in map(''.join, combinations(symbols, length)):
            yield word

# generator of all combinations allowing repetitions
def words1(chars=symbols, max_len=max_length):
    for length in xrange(1, max_length + 1):
        for word in map(''.join, product(*[symbols]*length)):
            yield word


for word in words1():
    #do something with word
    print word

combinationsproduct以及许多其他函数都返回迭代器而不是列表以节省内存:


>>> print combinations('0123456789',2)
<itertools.combinations object at 0x13e34b0>
>>> print list(combinations('0123456789',2))
[('0', '1'), ('0', '2'), ('0', '3'), ('0', '4'), ('0', '5'), ('0', '6'), ('0', '7'), ('0', '8'), ('0', '9'), ('1', '2'), ('1', '3'), ('1', '4'), ('1', '5'), ('1', '6'), ('1', '7'), ('1', '8'), ('1', '9'), ('2', '3'), ('2', '4'), ('2', '5'), ('2', '6'), ('2', '7'), ('2', '8'), ('2', '9'), ('3', '4'), ('3', '5'), ('3', '6'), ('3', '7'), ('3', '8'), ('3', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('4', '8'), ('4', '9'), ('5', '6'), ('5', '7'), ('5', '8'), ('5', '9'), ('6', '7'), ('6', '8'), ('6', '9'), ('7', '8'), ('7', '9'), ('8', '9')]

答案 2 :(得分:0)

查看模块itertools中的函数组合(http://docs.python.org/library/itertools.html#itertools.combinations)

import itertools
... setup all ...
for ilen in range(1, len(all)):
  for combo in itertools.combinations(all, ilen):
    print combo

答案 3 :(得分:0)

我没有测试过这个,但我认为基本的想法应该成立。请评论,如果它不起作用,我会调试它:

L = ['ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz', '0123456789']
def f(L, length, s=''):
    print s
    if len(s) == length:
        print s
    else:
        for word in L:
            for char in word:
                w = word.replace(char, '')
                l = L[:]
                l.remove(word)
                l.append(w)
                f(l, length, s+char)