Exercise 3: Single parameter Write a function print_even() which • takes a list of integer numbers as a parameter • prints all numbers that are even def print_even(a_list): # complete the body of this function ... print_even ([1, 2, 3, 4, 5]) list_1 list_2 print_even (list_1) print_even(list_2) [1, 3, 5, 7, 9, 11, 13, 15, 17, 20, 21, 20] = list(range(20, 0, -3)) # output >2 4 >20 20 >20 14 8 2

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 3E
icon
Related questions
Question
Writes python codes
Exercise 3: Single parameter
Write a function print_even() which
• takes a list of integer numbers as a parameter
• prints all numbers that are even
def print_even (a_list):
# complete the body of this function
...
print_even([1, 2, 3, 4, 5])
list_1
list_2
print_even (list_1)
print_even(list_2)
[1, 3, 5, 7, 9, 11, 13, 15, 17, 20, 21, 20]
list(range (20, 0, -3))
%D
# output
>2 4
> 20 20
>20 14 8 2
Transcribed Image Text:Exercise 3: Single parameter Write a function print_even() which • takes a list of integer numbers as a parameter • prints all numbers that are even def print_even (a_list): # complete the body of this function ... print_even([1, 2, 3, 4, 5]) list_1 list_2 print_even (list_1) print_even(list_2) [1, 3, 5, 7, 9, 11, 13, 15, 17, 20, 21, 20] list(range (20, 0, -3)) %D # output >2 4 > 20 20 >20 14 8 2
Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr