Files
python-uncompyle6/test/base-tests/python2.7/test_divide_future.pyc_dis_unverified
2015-12-13 05:23:28 -05:00

6 lines
243 B
Plaintext

# Embedded file name: /src/external-vcs/github/rocky/uncompyle6/test/base-tests/python2/test_divide_future.py
from __future__ import division
print ' 1 // 2 =', 0
print '1.0 // 2.0 =', 0.0
print ' 1 / 2 =', 0.5
print '1.0 / 2.0 =', 0.5