PythonExtra/tests/basics/int_big_lshift.py
Damien George 539681fffd tests: Rename test scripts, changing - to _ for consistency.
From now on, all new tests must use underscore.

Addresses issue #727.
2014-07-05 06:14:29 +01:00

18 lines
718 B
Python

# tests transition from small to large int representation by left-shift operation
for i in range(1, 17):
for shift in range(70):
print(i, '<<', shift, '=', i << shift)
# test bit-shifting negative integers
for i in range(8):
print(-100000000000000000000000000000 << i)
print(-100000000000000000000000000001 << i)
print(-100000000000000000000000000002 << i)
print(-100000000000000000000000000003 << i)
print(-100000000000000000000000000004 << i)
print(-100000000000000000000000000000 >> i)
print(-100000000000000000000000000001 >> i)
print(-100000000000000000000000000002 >> i)
print(-100000000000000000000000000003 >> i)
print(-100000000000000000000000000004 >> i)