> How do you write Perl's
>
>     print a ... z, A ... Z,  "\n"' in Python
>
>
> In Python?

you might consider this cheating, but it's packed with zen goodness:

>>> import string
>>> print string.letters
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to