don't understand why these execute different thingsā€¦



 total=total+10
>>> total=total+25
>>> total=total+25
>>> average=total/3
>>> total
110
>>> average
36.666666666666664




and 







total=0
>>> total=total+10
>>> total=total+25
>>> total=total+25
>>> average=total/3
>>> average
20.0






Sent from Windows Mail
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to