[chr(i) for i in range(97,123)]
''.join([chr(i) for i in range(97,123)])
import string
string.ascii_lowercase
dict.fromkeys(string.ascii_lowercase,0)