In message <mailman.1246.1280302904.1673.python-l...@python.org>, 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

Reply via email to