Question: Create a Python program (even_numbers.py) that prints the even numbers in a list of numbers that is entered by the user. When printing the

Create a Python program (even_numbers.py) that prints the even numbers in a list of numbers that is entered 

Create a Python program (even_numbers.py) that prints the even numbers in a list of numbers that is entered by the user. When printing the even numbers, you need to print the index of each number as well. Note: you don't need to define functions in this program. Example run: Enter list items (all int): 8 5 6 1 4 9 The list entered is: [8, 5, 6, 1, 4, 9]. The even numbers in the list with their indexes: my_list [0]: 8 my_list [2] : 6 my list [4]: 4

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The image shows instructions for creating a Python program which Ill refer to as evennumberspy The p... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!