gpt4 book ai didi

python - 如何在 python 中循环遍历未知数量的桶?

转载 作者:太空宇宙 更新时间:2023-11-04 01:48:35 25 4
gpt4 key购买 nike

我想得到这样的序列

a,b,c,.......,x,y,z,aa,ab,ac,....,az,ba,bb,....,bz,.. ..,aaa,....,azz.....,zzz,...

依此类推,直到我达到给定的长度。

我的问题是我不知道如何编写无限数量的循环。

abc = 'abcdefghijklmnopqrstuvwxyz'

def next_plate(i):
for letter in abc:
i += 1
yield letter, i

num_plates = 10000
i = 0
all_plates = {}

for plate,i in next_plate(i):
if i > num_plates:
break
all_plates[i] = plate

if i < num_plates:
for plate_1, _ in next_plate(i):
for plate_2,i in next_plate(i):
if i > num_plates:
break
all_plates[i] = plate_1 + plate_2

if i < num_plates:
for plate_1, _ in next_plate(i):
for plate_2, _ in next_plate(i):
for plate_3,i in next_plate(i):
if i > num_plates:
break
all_plates[i] = plate_1 + plate_2 + plate_3

有人可以帮我吗?

最佳答案

这是一个基于 itertools 的生成器:

import itertools, string

def plates():
n = 1
while True:
for plate in itertools.product(string.ascii_lowercase,repeat = n):
yield ''.join(plate)
n += 1

#test:

p = plates()
test = [next(p) for _ in range(10000)]
print(test[:30])
print(test[-30:])

输出:

['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', 'aa', 'ab', 'ac', 'ad']
['nsm', 'nsn', 'nso', 'nsp', 'nsq', 'nsr', 'nss', 'nst', 'nsu', 'nsv', 'nsw', 'nsx', 'nsy', 'nsz', 'nta', 'ntb', 'ntc', 'ntd', 'nte', 'ntf', 'ntg', 'nth', 'nti', 'ntj', 'ntk', 'ntl', 'ntm', 'ntn', 'nto', 'ntp']

关于python - 如何在 python 中循环遍历未知数量的桶?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58572173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com