Files
pycdc_fork/tests/input/store_slice.py
2025-07-01 09:24:53 +05:30

8 lines
86 B
Python

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