how to print range a-z in python?
Published on Aug. 22, 2023, 12:16 p.m.
To print the range of lowercase alphabets from a to z in Python, you can use the string
module, which contains a string constant ascii_lowercase
that represents all 26 lowercase letters in the English alphabet. Here’s an example:
import string
print(string.ascii_lowercase)
This will output: “abcdefghijklmnopqrstuvwxyz”. You can also use slicing to extract a range of characters from the string constant. For example, to print the first 14 letters of the alphabet, you can use the following code:
import string
print(string.ascii_lowercase[:14])
This will output: “abcdefghijklmn”.
I hope this helps with your question on how to print the range a-z in Python.