Home / Programs / Write a Python program that displays a specified list after removing the 0 th , 2nd, 4 th and 5 th elements.
🚀 Programming Example

Write a Python program that displays a specified list after removing the 0 th , 2nd, 4 th and 5 th elements.

👁 243 Views
💻 Practical Program
📘 Step Learning

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"]

💻 Program Code

Peoples_names = ["John", "Peter","Sam", "Tim", "Janet", "Dan"]
Peoples_names = [x for (i, x) in enumerate (Peoples_names) if i not in (0, 2, 4, 5)]
print (Peoples_names)
                        

🖥 Program Output

['Peter', 'Tim']
                            

📘 Explanation

📚 Learning Subject

Master Programming Through Practical Examples

Improve your coding logic, problem-solving skills and programming confidence by practicing real-world examples with explanations.

🎯 How to learn from this example

First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.

🔥 Practice suggestion

Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.