Is there a simple function to generate a list like ['a', 'b', 'c', ... 'z']?

martinskou at gmail.com martinskou at gmail.com
Mon Apr 9 06:05:41 EDT 2007


map(chr,range(65,91))

/Martin




More information about the Python-list mailing list