Hi everybody, I have a question about the difference of behavior of "len" when applied on tuples or on lists. I mean:
$ len( ( 'foo', 'bar' ) ) 2 $ len( ( 'foo' ) ) 3 $ len( [ 'foo', 'bar' ] ) 2 $ len( [ 'foo' ] ) 1 Why this behavior for the length computation of a tuple? For my application, I prefer the behavior of length for a list. If I want to store some values in a tuple because they should not be modified, the case where the tuple contains only one element bothers me. Thanks Julien -- python -c "print ''.join([chr(154 - ord(c)) for c in '*9(9&(18%.9&1+,\'Z (55l4('])" "When a distinguished but elderly scientist states that something is possible, he is almost certainly right. When he states that something is impossible, he is very probably wrong." (first law of AC Clarke) -- http://mail.python.org/mailman/listinfo/python-list