del L[:]- This is a great operation from access to L[:], which again is a separate operation from L[:] = x.
del L[:]calls an __delitem__object with an object slice.L[:]calls __getitem__with this sliceobject.L[:] = xcalls __setitem__with sliceand x.
-, , . __delitem__ , , __setitem__ , __getitem__ () , .
. , NumPy array, __getitem__ , - .