In message <[email protected]>, J.B. Brown wrote:
> I personally prefer to be slightly excessive in the amount of spacing
> I used, especially when parentheses are involved.
>
> myTuple = ( 1, 2, 3, 4, 5 )
Parentheses are punctuation. Why not leave spaces around the commas as well,
to be consistent?
myTuple = ( 1 , 2 , 3 , 4 , 5 )
T,FTFY.
--
http://mail.python.org/mailman/listinfo/python-list
