[Tutor] operator order

heathen godsofliberty at lavabit.com
Thu Jan 31 19:36:02 CET 2013


why is this:

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

not this:

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



More information about the Tutor mailing list