2006-01-04

Python| get a string of all the lowercase letters ['a'..'z']

1. string.lowercase

2.
chr(n) for n in range(ord('a'), ord('z')+1)

0 Comments:

Post a Comment

<< Home