"Yingjie Lan" <lany...@yahoo.com> wrote in message news:mailman.1050.1285403326.29448.python-l...@python.org...
Hi,

I noticed that in python3k, multiplying a sequence by a negative integer is the same as multiplying it by 0, and the result is an empty sequence. It seems to me that there is a more meaningful symantics.

Simply put, a sequence multiplied by -1 can give a reversed sequence.

Then for any sequence "seq", and integer n>0, we can have

"seq * -n" producing "(seq * -1) * n".

Any thoughts?

Gimmicky.

Best to define multiplication only by unsigned or positive values.

--
Bartc
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to