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 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
The image shows instructions for creating a Python program which Ill refer to as evennumberspy The p... View full answer
Get step-by-step solutions from verified subject matter experts
