Files
Pyarmor-Static-Unpack-1shot/tests/input/store_slice.py

9 lines
87 B
Python
Raw Normal View History

2025-06-30 23:57:31 +05:30
a = [0] * 16
l = [1,2,3]
a[13:] = l
a[5] = 10
a[:2] = [1,2]
a[:] = range(16)
2025-07-01 09:27:07 +05:30
print(a)