why is this:

>>> d = 2
>>> d *= 3 + 4
>>> d
14

not this:

>>> d = 2
>>> d = d * 3 + 4
>>> d
10

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to