Files
Pyarmor-Static-Unpack-1shot/tests/input/store_slice.py
2025-07-01 09:27:07 +05:30

9 lines
87 B
Python

a = [0] * 16
l = [1,2,3]
a[13:] = l
a[5] = 10
a[:2] = [1,2]
a[:] = range(16)
print(a)