how to generate required number of alphabets in python code example
Example: python create a list of alphabets
>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'