Files
python-uncompyle6/test/base_tests/python2.7/test_divide_future.py
2015-12-14 09:38:46 -05:00

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