Alphabet range in Python

Instead of making a list of alphabet characters like this: alpha = [‘a’, ‘b’, ‘c’, ‘d’………’z’] is there any way that we can group it to a range or something? For example, for numbers it can be grouped using range(): range(1, 10) 8 s 8 >>> import string >>> string.ascii_lowercase ‘abcdefghijklmnopqrstuvwxyz’ If you really need … Read more