Language: Python Suppose we have these iterable inputs and their corresponding A,B,C values: my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9); A=0, B=1, C=0 or A=1, B=0, C=0 my_tuple_5_15 = (5, 6, 7, 8, 9, 10, 11, 12, 13, 14); A=1, B=1, C=1 Compute the following calculation on every element of the iterable given. y=Ax2+Bx+C Return an iterable with the computed values. [20 pts]

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

Language: Python

Suppose we have these iterable inputs and their corresponding A,B,C values:

my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9); A=0, B=1, C=0 or A=1, B=0, C=0

my_tuple_5_15 = (5, 6, 7, 8, 9, 10, 11, 12, 13, 14); A=1, B=1, C=1

Compute the following calculation on every element of the iterable given.

y=Ax2+Bx+C

Return an iterable with the computed values. [20 pts]

-

How to fill in the following?

▼ 2.2: Operations on a list
Suppose we have these iterable inputs and their corresponding A,B,C values:
my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9); A=0, B=1, C=0 or A=1, B=0, C=0
my_tuple_5_15= (5, 6, 7, 8, 9, 10, 11, 12, 13, 14); A=1, B=1, C=1
Compute the following calculation on every element of the iterable given.
y = Az² +Ba+C
Return an iterable with the computed values. [20 pts]
► def-poly(input_list, A, B, C):
Side note: Python has great support for function arguments - you can make required, optional, and keyword-only arguments,
along with unlimited positional and unlimited keyword arguments. We'll just use the normal required arguments here, but maybe
optional would be better; you could set 0 as the default, for example.
[] assert tuple (poly(my_tuple_0_10, 0, 1, 0)) == my_tuple_0_10
assert tuple (poly(my_tuple_0_10, 1, 0, 0)) == (0,1,4,9,16,25,36,49,64,81)
assert tuple (poly(my_tuple_0_10, A=1, B=0, (=0)) == (0,1,4,9,16,25,36,49,64,81)
> Note: you are always welcome to add more tests - when I grade I will be running more tests than I put in the examples, as well. You might want to be careful in this
case if adding floating point tests; `==` is a little tricky with floating point values. We'll talk about numerical precision in a later lecture.
↑ ✓ © ✿ .⠀
Transcribed Image Text:▼ 2.2: Operations on a list Suppose we have these iterable inputs and their corresponding A,B,C values: my_tuple_0_10 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9); A=0, B=1, C=0 or A=1, B=0, C=0 my_tuple_5_15= (5, 6, 7, 8, 9, 10, 11, 12, 13, 14); A=1, B=1, C=1 Compute the following calculation on every element of the iterable given. y = Az² +Ba+C Return an iterable with the computed values. [20 pts] ► def-poly(input_list, A, B, C): Side note: Python has great support for function arguments - you can make required, optional, and keyword-only arguments, along with unlimited positional and unlimited keyword arguments. We'll just use the normal required arguments here, but maybe optional would be better; you could set 0 as the default, for example. [] assert tuple (poly(my_tuple_0_10, 0, 1, 0)) == my_tuple_0_10 assert tuple (poly(my_tuple_0_10, 1, 0, 0)) == (0,1,4,9,16,25,36,49,64,81) assert tuple (poly(my_tuple_0_10, A=1, B=0, (=0)) == (0,1,4,9,16,25,36,49,64,81) > Note: you are always welcome to add more tests - when I grade I will be running more tests than I put in the examples, as well. You might want to be careful in this case if adding floating point tests; `==` is a little tricky with floating point values. We'll talk about numerical precision in a later lecture. ↑ ✓ © ✿ .⠀
Expert Solution
steps

Step by step

Solved in 3 steps with 2 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