'<<' in python is a bitwise operator. For example: m << n This operation returns 'm' with bits shifted to the left by 'n' places. It is similar to the multiplying 'm' by '2**y'.
nums [1,2,3] vals = nums del vals[1:2] print(vals)