On Wed, 28 Dec 2005 19:17:11 -0600, "Ian Bicking" <ianb at colorstudy.com>
said:
>
> I also noticed this works for saving another character:
>
> [str(i)for i in(0,1,2)]
While we're saving each other bytes:
[str(i)for i in 0,1,2]
saves another one.
Cheers,
Mike Dudzik