micropython/tests/basics/int_big_rshift.py

4 wiersze
66 B
Python
Czysty Zwykły widok Historia

i = 123456789012345678901234567890
print(i >> 1)
print(i >> 1000)