OK, so let me get this straight. 
If I'm using Python 3, then division with integers is more akin to the way it 
works with doubles in Java?

In Java,
2.0/3 = 3/2.0 = 2.0/3.0 = 0.666...
In Python 2,
2/3 = 0
In Python 3,
2/3 = 0.666...
Right?

What about "div" and "mod"?
In Java,
2/3 = 0
2%3 = 2
In Python 2,
2//3 = 0
2%3 = 2
Right?

And in Python 3, how do you get "div" and "mod" operations to work on integers?

TIA,
AJG
_______________________________________________
Edu-sig mailing list
Edu-sig@python.org
https://mail.python.org/mailman/listinfo/edu-sig

Reply via email to