Ten en cuenta que en las ciencias cualquier problema casi siempere puede tener varias resoluciones, no obstante mostramos lo más óptimo y eficiente.
Solución:
>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
Si realmente necesitas una lista:
>>> list(string.ascii_lowercase)
['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']
Y para hacerlo con range
>>> list(map(chr, range(97, 123))) #or list(map(chr, range(ord('a'), ord('z')+1)))
['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']
Otros útiles string
características del módulo:
>>> help(string) # on Python 3
....
DATA
ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
digits = '0123456789'
hexdigits = '0123456789abcdefABCDEF'
octdigits = '01234567'
printable = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&'()*+,-./:;<=>[email protected][\]^_`~ tnrx0bx0c'
punctuation = '!"#$%&'()*+,-./:;<=>[email protected][\]^_`~'
whitespace = ' tnrx0bx0c'
[chr(i) for i in range(ord('a'),ord('z')+1)]
En Python 2.7 y 3 puedes usar esto:
import string
string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
string.ascii_uppercase
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Como dice @Zaz:
string.lowercase
está en desuso y ya no funciona en Python 3 pero string.ascii_lowercase
funciona en ambos
Comentarios y calificaciones de la guía
Si guardas algún reparo y forma de ascender nuestro artículo te evocamos ejecutar un exégesis y con placer lo interpretaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)