Q. What will be the output of the following code snippet?
Code:
example = ["Sunday", "Monday", "Tuesday", "Wednesday"]; del example[2] print(example)
β
Correct Answer: (B)
['Sunday', 'Monday', 'Wednesday']