Files
Pyarmor-Static-Unpack-1shot/pycdc/tests/input/test_divide_future.py
2025-09-13 14:39:22 +08:00

12 lines
188 B
Python

from __future__ import division
ai = 1
bi = 2
af = 1.5
bf = 2.5
print ' 1 // 2 =', ai // bi
print '1.5 // 2.5 =', af // bf
print ' 1 / 2 =', ai / bi
print '1.5 / 2.5 =', af / bf