我正在制作一个列表生成器。我尝试了多次,但提出了一个很长的解决方案,但这并不完美。我想要一个具有所有可能性的生成列表,比方说,所有3个字符的列表大约有5万种可能性
例如 :
zzz
,直到到达999
或www.website.com/[generated_username]
假设我想从多个用户名中抓取关注者
timer1
我想让生成器为我创建所有3个字母或全部4个字母的所有可能性。
所以我做了一个包含所有字母和数字的列表
我做了3个变量名timer2
+ timer3
+ timer1 = 0
timer2 = 0
timer3 = 0
target = ['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
user_ = target[timer3]+target[timer2]+target[timer1]
while True :
if timer1 == 36 :
timer1 = 0
timer2 = timer2+1
if timer2 == 36 :
timer1 = 0
timer2 = 0
timer3 = timer3+1
if timer3 == 36 :
print('done')
print(user_)
timer1 += 1
对我来说确实如此,但是它非常慢+很长的代码
com.example.a(obfuscated class)
com.example.KeepClass1(kept class)
com.example.KeepClass2
com.example.KeepClassN
com.example.internal.a(obfuscated class)
com.example.internal.b
com.example.internal.InternalHelper(Kept class)
我希望能获得更轻松,更快速的代码来生成全部3种或什至5种可能性。
答案 0 :(得分:5)
您可以使用itertools.product
,将重复次数设置为3
:
from string import ascii_lowercase, digits
from itertools import product
s = ascii_lowercase + digits
#'abcdefghijklmnopqrstuvwxyz0123456789'
list(map(''.join, product(s, repeat=3)))
# ['aaa', 'aab', 'aac', 'aad', 'aae', 'aaf', 'aag'...