5 lines
135 B
Python
5 lines
135 B
Python
# From the standard library:
|
|
from string import ascii_lowercase
|
|
|
|
# Generation:
|
|
lower = [chr(i) for i in range(ord('a'), ord('z') + 1)]
|