Write a Python program that displays a specified list after removing the 0 th , 2nd, 4 th and 5 th elements.
Write a Python program that displays a specified list after removing the 0 th , 2nd, 4 th and 5 th elements.
For instance if the sample list has the following elements: ["John", "Peter", "Sam", "Tim", "Janet", "Dan"] the expected output will be: ["Peter", "Tim"]