Python crée une liste d'alphabets
>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
Frantic Fly
>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
import string
alphabet = list(string.ascii_lowercase)
print(alphabet)
# Returns: ['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']