pycdc/tests/25_test_divide_future.ref.py
2016-09-08 09:59:10 -07:00

6 lines
155 B
Python

from __future__ import division
print ' 1 // 2 =', 1 // 2
print '1.0 // 2.0 =', 1.0 // 2.0
print ' 1 / 2 =', 1 / 2
print '1.0 / 2.0 =', 1.0 / 2.0