Files
python-uncompyle6/test/base-tests/python2/test_divide_future.py

7 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