Domanda

I need to generate a list of triplets containing only uppercase English letters:

["AAA","AAB","AAC", ..., 'ZZZ']

What is the fastest way to do this in python?

È stato utile?

Soluzione

>>> from itertools import product
>>> from string import ascii_uppercase
>>> triplets = map(''.join, product(ascii_uppercase, repeat=3))
>>> triplets[4]
'AAE'
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top