Problem 2: Fun with collections This is a series of manipulations on a tuples. I'll give you some example tuples to test, but your manipulations should work on any iterable input: []my_tuple_0_10 = tuple(range(10)) my_tuple_5_15 = tuple(range(5,15)) print("my_tuple_0_10 =", my_tuple_0_10) print("my_tuple_5_15 -", my_tuple_5_15) my_tuple_e_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) my_tuple_5_15= (5, 6, 7, 8, 9, 10, 11, 12, 13, 14) 2.1: Select the even elements of an iterable only: Fill in the following function with something that returns just the even parts of list. Condition: • create an output list (empty at first) • create for loop: loop through each element of the list [3pts] (HINT: len and range or for in statements) • filter if even or not and append all even parts of list into the new output list [15 pts] • return output list (as tuple type) [2 pts] [] def evens (input_list): # sample tuples my_tuple_e_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) my_tuple_5_15= (5, 6, 7, 8, 9, 10, 11, 12, 13, 14) # test your function to this tuple evens (my_tuple_0_10) evens(my tuple 5 15) ↑↓00/01

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

Language: Python

How to fill in the following?

-> def evens(input_list):

    ...
▾ Problem 2: Fun with collections
This is a series of manipulations on a tuples. I'll give you some example tuples to test, but your manipulations should work on any iterable input:
[]my_tuple_0_10 = tuple(range (10))
my_tuple_5_15 = tuple(range(5,15))
print("my_tuple_0_10 =", my_tuple_0_10)
print("my_tuple_5_15 =", my_tuple_5_15)
my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
my_tuple_5_15 = (5, 6, 7, 8, 9, 10, 11, 12, 13, 14)
▼ 2.1: Select the even elements of an iterable only:
Fill in the following function with something that returns just the even parts of list. Condition:
• create an output list (empty at first)
• create for loop: loop through each element of the list [3pts] (HINT: len and range or for in statements)
• filter if even or not and append all even parts of list into the new output list [15 pts]
• return output list (as tuple type) [2 pts]
[] def evens (input_list):
…….
# sample tuples
my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
my_tuple_5_15 = (5, 6, 7, 8, 9, 10, 11, 12, 13, 14)
# test your function to this tuple
evens (my_tuple_0_10)
evens (my tuple 5 15).
↑/01:
Transcribed Image Text:▾ Problem 2: Fun with collections This is a series of manipulations on a tuples. I'll give you some example tuples to test, but your manipulations should work on any iterable input: []my_tuple_0_10 = tuple(range (10)) my_tuple_5_15 = tuple(range(5,15)) print("my_tuple_0_10 =", my_tuple_0_10) print("my_tuple_5_15 =", my_tuple_5_15) my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) my_tuple_5_15 = (5, 6, 7, 8, 9, 10, 11, 12, 13, 14) ▼ 2.1: Select the even elements of an iterable only: Fill in the following function with something that returns just the even parts of list. Condition: • create an output list (empty at first) • create for loop: loop through each element of the list [3pts] (HINT: len and range or for in statements) • filter if even or not and append all even parts of list into the new output list [15 pts] • return output list (as tuple type) [2 pts] [] def evens (input_list): ……. # sample tuples my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) my_tuple_5_15 = (5, 6, 7, 8, 9, 10, 11, 12, 13, 14) # test your function to this tuple evens (my_tuple_0_10) evens (my tuple 5 15). ↑/01:
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY