Why is there no post-pre increment operator in python

R

riteshtijoriwala

Anyone has any idea on why is there no post/pre increment operators in
python ?
Although the statement:
++j
works but does nothing
 
R

Roy Smith

Anyone has any idea on why is there no post/pre increment operators in
python ?

Short answer: Because Guido didn't like them.

Longer answer: Because they encourage people to write cryptic one-liners.
There really isn't anything you can't write with them that you couldn't
write just as well without them. It just takes another line or two of
code. The end result may be a little longer, but it's almost always easier
to understand.
Although the statement:
++j
works but does nothing

Well, it works in the sense that it's not a syntax error, but it doesn't
quite do nothing. It applies the unary + operator to the value of j, then
does it again, then throws away the result. Granted, that's probably not
what you expected, and probably not very useful, but it's not quite
"nothing".
 
T

Tim Peters

[[email protected]]
Anyone has any idea on why is there no post/pre increment operators in
python ?

Maybe because Python doesn't aim at being a cryptic portable assembly
language? That's my guess ;-)
Although the statement:
++j
works but does nothing

That depends on the type of j, and how it implements the __pos__()
method. The builtin numeric types (integers, floats, complex)
implement __pos__ to return the base-class part of `self`. That's not
the same as doing nothing. There is no "++" operator in Python, BTW
-- that's two applications of the unary-plus operator.
<type 'float'>

If you want, you can implement __pos__ in your class so that

+a_riteshtijoriwala_object

posts messages to comp.lang.c asking why C is so inflexible ;-).
 
M

Mike Meyer

Anyone has any idea on why is there no post/pre increment operators in
python ?

For lots of good reasons.
Although the statement:
++j
works but does nothing

So does --j. They both parse as a value with two unary operators
applied to it in succession: +(+(j)) and -(-(j)).

<mike
 
P

Peter Hansen

Anyone has any idea on why is there no post/pre increment operators in
python ?
Although the statement:
++j
works but does nothing

The reason is pretty complex, but here it is: Python is not C.

-Peter
 
P

Peter Hansen

gene said:
Roy said:
Thanks for posting that URL; I hadn't seen the list before.
[...]

pls don't hijack threads

Um, he didn't "hijack" it, he follow a tangent to the discussion and
even changed the Subject line in a very appropriate manner, both of are
completely acceptable netiquette and long-standing Usenet practices.

(Rather like I'm doing here.)

-Peter
 
F

Fredrik Lundh

gene tani said:
pls don't hijack threads

this is usenet, not gene tani's web board.

if you have trouble dealing with subthreads, get a better news reader.

</F>
 
G

gene tani

Peter said:
gene said:
Roy said:
Thanks for posting that URL; I hadn't seen the list before.
[...]

pls don't hijack threads

Um, he didn't "hijack" it, he follow a tangent to the discussion and
even changed the Subject line in a very appropriate manner, both of are
completely acceptable netiquette and long-standing Usenet practices.

(Rather like I'm doing here.)

Sorry, I was trying to be helpful. One thing, i think it helps to
glance over rejected PEPs every once in a while to reinforce what's not
there
http://www.python.org/peps/

Gene
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,022
Latest member
MaybelleMa

Latest Threads

Top