kopia lustrzana https://github.com/micropython/micropython
6 wiersze
155 B
Python
6 wiersze
155 B
Python
|
# test slicing when arguments are bignums
|
||
|
|
||
|
print(list(range(10))[(1<<66)>>65:])
|
||
|
print(list(range(10))[:(1<<66)>>65])
|
||
|
print(list(range(10))[::(1<<66)>>65])
|