division



examples/2to3/div2.py
print 3/2   # 1

examples/2to3/div3.py
from __future__ import division

print 3/2   # 1.5