Blog

What is the output of the below code?

list = [52, 65, 25, 88, 45, 69, 63, 260]
del list[2:6]

print(list)