python中是否有内置列表或某个包含字母表列表的包?

时间:2013-11-02 21:40:49

标签: python enumeration alphabetical

python中是否有内置列表或某些包含字母列表的包?我想避免像

这样的系统
alphabets = ('a','b','c',.....)

2 个答案:

答案 0 :(得分:10)

使用string.ascii_lowercase

>>> from string import ascii_lowercase
>>> ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
>>> list(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']

答案 1 :(得分:3)

您还可以进行列表理解:

>>> [chr(i) for i in range(97,97+26)]
['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']