RosettaCodeData/Task/Generate-lower-case-ASCII-alphabet/Python/generate-lower-case-ascii-alphabet-1.py
2023-07-01 13:44:08 -04:00

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)]